-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
85 lines (85 loc) · 2.16 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
{
"name": "miniprogram-computed",
"version": "6.0.2",
"description": "Computed & watch - wechat miniprogram custom component extend behavior",
"main": "dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"dev": "gulp dev",
"watch": "gulp dev-watch",
"build": "gulp",
"gen_dts": "gulp dts",
"test": "jest ./test/* --bail",
"coverage": "jest ./test/* --coverage --bail",
"lint": "eslint . --fix"
},
"miniprogram": "dist",
"repository": {
"type": "git",
"url": "https://github.com/wechat-miniprogram/computed.git"
},
"files": [
"src",
"dist",
"types",
"LICENSE",
"package.json",
"README.md",
"UPDATE.md"
],
"author": "wechat-miniprogram",
"license": "MIT",
"devDependencies": {
"@swc/cli": "^0.3.12",
"@swc/core": "^1.5.7",
"@types/jest": "^29.5.12",
"@types/rfdc": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"codecov": "^3.8.3",
"colors": "^1.4.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.2.0",
"glass-easel": "~0.10.0",
"glass-easel-miniprogram-adapter": "~0.10.0",
"glass-easel-template-compiler": "~0.10.0",
"gulp": "^5.0.0",
"gulp-clean": "^0.4.0",
"gulp-esbuild": "^0.12.0",
"gulp-swc": "^2.1.0",
"gulp-typescript": "6.0.0-alpha.1",
"gulp-watch": "^5.0.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"proxy-polyfill": "^0.3.2",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"rfdc": "^1.3.1"
},
"peerDependencies": {
"miniprogram-api-typings": "^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"pnpm": {
"overrides": {
"ansi-regex@>2.1.1 <5.0.1": ">=5.0.1",
"braces@<2.3.1": ">=2.3.1",
"glob-parent@<5.1.2": ">=5.1.2"
}
}
}