-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.73 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
{
"name": "codex-pets-web",
"version": "0.3.1",
"private": true,
"description": "Framework-neutral and React renderers for Codex pet spritesheets.",
"license": "MIT",
"author": "FroeMic",
"repository": {
"type": "git",
"url": "git+https://github.com/FroeMic/codex-pets-web.git"
},
"bugs": {
"url": "https://github.com/FroeMic/codex-pets-web/issues"
},
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"dev": "npm run dev -w apps/demo",
"copy:pets": "node scripts/copy-local-pets.mjs",
"pack:dry": "npm pack --dry-run -w packages/core && npm pack --dry-run -w packages/react && npm pack --dry-run -w packages/vue && npm pack --dry-run -w packages/svelte && npm pack --dry-run -w packages/solid && npm pack --dry-run -w packages/angular",
"prepublishOnly": "npm run build && npm run test && npm run pack:dry"
},
"keywords": [
"codex",
"pets",
"spritesheet",
"react",
"animation"
],
"devDependencies": {
"@angular/common": "^20.3.19",
"@angular/compiler": "^20.3.19",
"@angular/compiler-cli": "^20.3.19",
"@angular/core": "^20.3.19",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.3.4",
"happy-dom": "^20.0.10",
"ng-packagr": "^20.3.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"solid-js": "^1.9.12",
"svelte": "^5.55.5",
"typescript": "^5.7.2",
"vite": "^6.0.5",
"vite-plugin-solid": "^2.11.12",
"vitest": "^4.0.16",
"vue": "^3.5.34"
}
}