-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.73 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
{
"name": "@mpxjs/template-engine",
"version": "2.8.7",
"description": "template-engine for mpx runtime render",
"homepage": "https://github.com/mpx-ecology/template-engine",
"bugs": {
"url": "https://github.com/mpx-ecology/template-engine/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:mpx-ecology/template-engine.git"
},
"license": "MIT",
"author": "xiaolei",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"benchmark": "node ./benchmarks/index.js",
"build": "rm -rf dist && tsc && cp src/utils.wxs dist",
"dev": "tsc -w",
"lint": "npx eslint --fix . --ext .ts",
"release": "release-it",
"test": "vitest --environment=jsdom",
"example": "cd example && npm run serve"
},
"lint-staged": {
"*.ts": [
"npm run lint",
"git add"
]
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@release-it/conventional-changelog": "^3.3.0",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"benchmark": "^2.1.4",
"eslint": "^7.28.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^6.0.0",
"jsdom": "^24.0.0",
"lint-staged": "^9.5.0",
"miniprogram-simulate": "^1.6.1",
"prettier": "^3.2.5",
"release-it": "^14.11.5",
"typescript": "^4.8.2",
"vitest": "^1.2.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@mpxjs/webpack-plugin": "^2.9.30"
}
}