-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.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
{
"name": "@inventorjs/inventorjs",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/inventorjs/cli.git",
"author": "sunkeysun",
"license": "MIT",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"commitlint": {
"extends": "@commitlint/config-conventional"
},
"lint-staged": {
"*.ts": "eslint"
},
"scripts": {
"clean": "rimraf node_modules **/*/node_modules **/*/lib",
"dev": "pnpm build && pnpm -r --parallel dev",
"build": "pnpm -r build",
"publish:patch": "pnpm build && pnpm -r exec pnpm version patch && pnpm -r publish",
"publish:minor": "pnpm build && pnpm -r exec pnpm version minor && pnpm -r publish",
"publish:major": "pnpm build && pnpm -r exec pnpm version major && pnpm -r publish"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@inventorjs/eslint-config": "0.0.17",
"@inventorjs/prettier-config": "0.0.17",
"@types/node": "^18.14.1",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"rimraf": "^3.0.2",
"typescript": "^4.9.5"
},
"prettier": "@inventorjs/prettier-config",
"eslintConfig": {
"extends": [
"@inventorjs/eslint-config"
],
"ignorePatterns": [
"**/templates/**/*"
]
},
"dependencies": {
"@inventorjs/typescript-config": "0.0.18"
}
}