generated from awefeng/npm-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.57 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": "@awefeng/state-machine",
"version": "1.1.2",
"publishConfig": {
"access": "public"
},
"author": {
"name": "awefeng",
"email": "[email protected]",
"url": "https://github.com/awefeng"
},
"description": "TS实现的状态机,包含FSM",
"license": "MIT",
"main": "dist/index.js",
"module": "esm/index.js",
"keywords": [
"state",
"machine",
"state-machine",
"state machine",
"fsm",
"finite"
],
"homepage": "https://github.com/awefeng/state-machine",
"bugs": {
"url": "https://github.com/awefeng/state-machine/issues"
},
"repository": {
"url": "https://github.com/awefeng/state-machine.git",
"type": "git"
},
"files": [
"dist",
"esm",
"types",
"bin",
"README.md",
"LICENSE"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup --config rollup.config.js"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.7.1",
"rollup": "^2.75.7",
"typescript": "^4.7.4"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.18.3"
}
}