-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
104 lines (104 loc) · 2.67 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@strapi/sdk-plugin",
"version": "5.2.7",
"description": "Simple tools for developing Strapi plugins",
"keywords": [
"strapi",
"plugin",
"build",
"tools"
],
"repository": {
"type": "git",
"url": "https://github.com/strapi/sdk-plugin.git"
},
"license": "SEE LICENSE IN LICENSE",
"author": {
"name": "Strapi Solutions SAS",
"email": "[email protected]",
"url": "https://strapi.io"
},
"maintainers": [
{
"name": "Strapi Solutions SAS",
"email": "[email protected]",
"url": "https://strapi.io"
}
],
"exports": {
".": {
"source": "./src/index.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"strapi-plugin": "./bin/strapi-plugin.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "pack-up build",
"check": "pack-up check",
"lint": "eslint .",
"prepare": "husky",
"prerelease:enter": "changeset pre enter",
"prerelease:exit": "changeset pre exit",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"release:add": "changeset add",
"release:publish": "changeset publish",
"release:version": "changeset version && pnpm install",
"test:ts": "tsc --noEmit",
"test:unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"watch": "pack-up watch"
},
"dependencies": {
"@strapi/pack-up": "^5.0.1",
"@types/prompts": "2.4.9",
"boxen": "5.1.2",
"chalk": "4.1.2",
"commander": "12.1.0",
"concurrently": "^8.2.2",
"execa": "^9.3.1",
"get-latest-version": "5.1.0",
"git-url-parse": "13.1.1",
"nodemon": "^3.1.0",
"ora": "5.4.1",
"outdent": "0.8.0",
"pkg-up": "3.1.0",
"prettier": "2.8.8",
"typescript": "5.4.4",
"yup": "0.32.9"
},
"devDependencies": {
"@changesets/changelog-git": "^0.2.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@strapi/eslint-config": "^0.2.1",
"@swc/core": "^1.4.13",
"@swc/jest": "^0.2.36",
"@types/git-url-parse": "9.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"@types/prettier": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.56.0",
"eslint-plugin-rxjs": "^5.0.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0 <=22.x.x",
"npm": ">=6.0.0"
}
}