-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.78 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
{
"name": "cross-virtual-list",
"version": "0.3.2",
"description": "跨平台、跨框架的虚拟列表组件",
"repository": {
"type": "git",
"url": "git+https://github.com/imingyu/cross-virtual-list.git"
},
"keywords": [],
"author": {
"name": "imingyu",
"email": "mingyuhisoft@163.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/imingyu/cross-virtual-list/issues"
},
"homepage": "https://github.com/imingyu/cross-virtual-list#readme",
"private": true,
"scripts": {
"prepare": "husky install",
"lint:es": "eslint \"./packages\" \"./scripts\"",
"fix:es": "eslint --fix \"./packages\" \"./scripts\"",
"lint": "lint-staged",
"clear:dist": "rimraf ./packages/*/dist",
"clear": "pnpm clear:dist && rimraf ./packages/*/node_modules",
"test": "rimraf ./test-dist && tsc -p ./test/tsconfig.json && mocha ./test-dist/test/*.js ./test-dist/test/**/*.js",
"build:scripts": "rimraf ./scripts-dist && tsc -p ./scripts/tsconfig.json",
"build": "pnpm build:scripts && pnpm clear:dist && node ./scripts-dist/cli.js",
"build:core": "pnpm build:scripts && rimraf ./packages/core/dist && node ./scripts-dist/cli.js core",
"pub": "pnpm build:scripts && node ./scripts-dist/pub.js"
},
"dependencies": {
"typescript": "^5.2.2"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^11.1.6",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.6",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"autoprefixer": "^10.4.15",
"chai": "^4.3.7",
"copy": "^0.3.2",
"eslint": "^8.44.0",
"eslint-config-alloy": "^5.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"mocha": "^10.2.0",
"node-sass": "^9.0.0",
"postcss": "^8.4.27",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"rollup": "^3.26.2",
"rollup-plugin-dts": "^6.1.0",
"stylelint": "^15.10.2",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^5.1.0",
"tslib": "^2.6.2"
}
}