forked from soonfx-engine/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.87 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.87 KB
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": "@soonfx/engine",
"version": "2.0.0",
"description": "TypeScript-first game numeric engine for RPG and strategy games - formula parsing, battle simulation, zero dependencies",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"pack": "npm pack",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint \"src/**/*.ts\"",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"docs:dev": "vitepress dev site",
"docs:build": "vitepress build site && cd examples && npm run build",
"docs:preview": "vitepress preview site"
},
"keywords": [
"javascript",
"typescript",
"rpg",
"game-engine",
"expression-parser",
"battle-system",
"zero-dependencies",
"numeric-calculation",
"formula-engine",
"game-formula",
"strategy-game",
"turn-based",
"card-game",
"simulation",
"game-math",
"game-logic",
"visual-programming",
"damage-calculation",
"character-attributes",
"game-development"
],
"author": "SoonFx Team <jiyisoon@163.com> (https://soonfx.dev)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/soonfx-engine/core.git"
},
"bugs": {
"url": "https://github.com/soonfx-engine/core/issues"
},
"homepage": "https://soonfx.dev",
"engines": {
"node": ">=14.0.0"
},
"sideEffects": false,
"devDependencies": {
"@vitest/coverage-v8": "^1.6.1",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"vitepress": "^1.6.4",
"vitest": "^1.0.0",
"vue": "^3.5.25"
}
}