-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.71 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
{
"name": "aiplugin4",
"version": "1.0.0",
"description": "ai plugin for sealdice",
"main": "build/index.js",
"typings": "build/index.d.ts",
"repository": "https://github.com/error2913/aiplugin4",
"license": "MIT",
"keywords": [],
"scripts": {
"build": "cross-env NODE_ENV=production node tools/build.js",
"build-dev": "cross-env NODE_ENV=dev node tools/build.js",
"smoke": "node scripts/smoke.js",
"lint": "eslint \"src/**/*.ts\"",
"package:check": "npm run build && node scripts/prepare-sealpack.js && sealpack validate sealpack && sealpack size sealpack",
"pack:sealpack": "node scripts/prepare-sealpack.js && sealpack pack sealpack --out dist/aiplugin4.sealpack",
"pack:release": "node scripts/build-release.js"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@types/handlebars": "^4.0.40",
"handlebars": "^4.7.8",
"js-toml": "^1.0.3",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^8.66.0",
"@typescript-eslint/parser": "^8.66.0",
"cross-env": "^7.0.3",
"esbuild": "^0.21.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^6.6.3",
"eslint-plugin-import": "^2.32.0",
"fs-extra": "^11.2.0",
"sealpack": "^0.1.2",
"source-map-support": "^0.5.21",
"typescript": "^5.5.4"
},
"files": [
"build/main",
"build/module",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"singleQuote": true
}
}