-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 997 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 997 Bytes
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
{
"name": "state-manager",
"version": "2.0.0",
"description": "A class representing a state machine manager.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "bun run bun-build.ts && npx tsc --declaration --emitDeclarationOnly --declarationMap false --sourceMap false",
"build:docs": "typedoc",
"build:dist": "bun run build && bun run build:docs"
},
"keywords": [],
"author": "https://github.com/doubleactii",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/EvitcaStudio/StateManager"
},
"bugs": {
"url": "https://github.com/EvitcaStudio/StateManager/issues"
},
"homepage": "https://github.com/EvitcaStudio/StateManager#readme",
"devDependencies": {
"bun": "^1.2.22",
"chalk": "^5.6.2",
"typescript": "^5.0.0",
"typedoc": "^0.25.0"
}
}