-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1012 Bytes
/
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
{
"name": "mecha-ts",
"version": "0.8.0",
"description": "finished state machine using typescript",
"source": "./lib/index.js",
"main": "./lib/index.js",
"module": "./lib/index.js",
"exports": {
".": {
"browser": "./lib/index.js",
"import": "./lib/index.js",
"node": "./lib/index.js",
"default": "./lib/index.js"
}
},
"files": [
"lib/index.js",
"lib/index.d.ts"
],
"type": "commonjs",
"types": "./lib/index.d.ts",
"engines": {
"node": ">=14"
},
"scripts": {
"sample": "esbuild ./sample/index.ts --bundle --minify --target=es2021 --outfile=/build/bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benevolarX/mecha-ts.git"
},
"author": "benevolarX",
"license": "MIT",
"bugs": {
"url": "https://github.com/benevolarX/mecha-ts/issues"
},
"homepage": "https://github.com/benevolarX/mecha-ts#readme",
"devDependencies": {
"@types/node": "^16.9.1",
"typescript": "^4.4.3"
}
}