-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.3 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
{
"name": "glitch-animate",
"version": "0.1.0-next.0",
"description": "A constraint-based animation system for the web.",
"type": "module",
"license": "Apache-2.0",
"author": "LummiGhost",
"repository": {
"type": "git",
"url": "git+https://github.com/LummiGhost/glitch-animate.git"
},
"bugs": {
"url": "https://github.com/LummiGhost/glitch-animate/issues"
},
"homepage": "https://github.com/LummiGhost/glitch-animate#readme",
"sideEffects": false,
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"import": "./dist/lib/index.js"
}
},
"files": [
"dist/lib",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"clean": "node ./scripts/clean.mjs",
"build": "npm run build:lib && npm run build:demo",
"build:lib": "tsc -p tsconfig.build.json",
"build:demo": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepublishOnly": "npm run clean && npm run build"
},
"devDependencies": {
"typescript": "^5.6.3",
"vite": "^6.0.11",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20"
}
}