-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.92 KB
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
{
"name": "@mastergo/plugin-typings",
"version": "2.18.1",
"description": "MasterGo插件API声明文件",
"type": "module",
"main": "",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"dev": "rollup -c --environment NODE_ENV=development",
"build": "rollup -c --environment NODE_ENV=production",
"release": "node scripts/release.cjs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"commit": "git-cz"
},
"files": [
"dist",
"README-en.md",
"README.md"
],
"keywords": [
"mastergo",
"plugin",
"typings"
],
"author": "MasterGo",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mastergo-design/plugin-typings.git"
},
"directories": {
"lib": "lib"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.0",
"chalk": "^4.1.2",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^3.0.0",
"csstype": "^3.1.3",
"cz-conventional-changelog": "^3.3.0",
"execa": "^5.1.1",
"husky": "^7.0.2",
"inquirer": "^8.0.0",
"inquirer-autocomplete-prompt": "^2.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1",
"rollup": "^4.59.0",
"rollup-plugin-dts": "^6.4.0",
"rollup-plugin-typescript2": "^0.36.0",
"semver": "^7.3.5",
"shelljs": "^0.8.5",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts": [
"prettier --parser=typescript --write"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}