-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.47 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
{
"name": "dynamic-tasks",
"version": "1.2.1",
"description": "基于promise的高性能任务库",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"exports": {
".": "./dist/index.esm.js"
},
"types": "dist/types/src/index.d.ts",
"type": "module",
"author": "wuyunqiang",
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"h5",
"promise",
"microtask",
"task",
"parallel",
"serial",
"cancelable",
"高性能"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf ./dist && rollup -c"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"babel-plugin-transform-remove-console": "^6.9.4",
"core-js": "^3.31.0",
"eslint": "^8.42.0",
"rollup": "^3.25.1",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-typescript2": "^0.34.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"repository": {
"type": "git",
"url": "git@github.com:wuyunqiang/dynamic-tasks.git"
},
"homepage": "https://github.com/wuyunqiang/dynamic-tasks"
}