-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.72 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
66
67
68
69
{
"name": "sciurus",
"description": "A lightweight, TypeScript-based implementation of Bevy.",
"version": "0.0.6",
"workspaces": [
"packages/*",
"examples/*"
],
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"import": "./lib/index.mjs"
}
},
"files": [
"lib",
"LICENSE",
"README.md"
],
"scripts": {
"build": "monoup build",
"test": "vitest",
"clean": "monoup clean",
"lint": "eslint packages/*/src/**/*.ts packages/*/test/**/*.ts src/**/*.ts",
"format": "prettier --write packages/*/src/**/*.ts packages/*/test/**/*.ts src/**/*.ts",
"prepub": "yarn lint && yarn clean && yarn build && yarn test run",
"publish": "monoup publish",
"ver": "monoup version"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
"minigame-api-typings": "^3.8.7",
"monoup": "^0.4.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"rustable": "^0.4.7",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
},
"author": "illuxiza",
"repository": {
"type": "git",
"url": "git+https://github.com/illuxiza/sciurus.git"
},
"bugs": {
"url": "https://github.com/illuxiza/sciurus/issues"
},
"dependencies": {
"@sciurus/app": "0.0.6",
"@sciurus/ecs": "0.0.6",
"@sciurus/utils": "0.0.6"
},
"peerDependencies": {
"rustable": "^0.4.0"
},
"homepage": "https://github.com/illuxiza/sciurus#readme",
"license": "MIT",
"packageManager": "yarn@4.6.0",
"publishConfig": {
"access": "public"
}
}