-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.06 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
{
"name": "@tsukinoko-kun/ecs.ts",
"version": "1.0.0",
"description": "TypeScript Entity Component System based Web UI library",
"main": "lib/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/tsukinoko-kun/ecs.ts.git"
},
"bugs": "https://github.com/tsukinoko-kun/ecs.ts/issues",
"bin": {
"ecs": "bin/ecs.mjs"
},
"scripts": {
"format": "prettier --write .",
"demo:dev": "pnpm -r --filter=\"demo\" run dev",
"demo:build": "pnpm -r --filter=\"demo\" run build",
"extension:build": "pnpm -r --filter=\"extension\" run build"
},
"keywords": [],
"author": "Frank Mayer",
"license": "MIT",
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/node": "^20.14.12",
"prettier": "^3.3.3",
"prettier-plugin-organize-attributes": "^1.0.0",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.6.5"
},
"dependencies": {
"jsdom": "^24.1.1",
"vite": "^5.3.5"
}
}