-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.26 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
{
"name": "@nonphoto/spring",
"version": "0.0.0",
"description": "Low-level spring physics toolbox",
"type": "module",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./src/*": "./src/*"
},
"files": [
"./dist/*",
"./src/*"
],
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "pnpm build",
"build": "tsup ./src/index.ts --dts --format esm --clean",
"release": "semantic-release",
"dev": "vinxi dev"
},
"keywords": [
"spring",
"physics",
"animation"
],
"author": "Jonas Luebbers <jonas@jonasluebbers.com> (https://www.jonasluebbers.com)",
"license": "MIT",
"devDependencies": {
"@kobalte/core": "0.13.9",
"@nonphoto/css": "1.0.4",
"@solid-primitives/resize-observer": "2.1.0",
"@solidjs/router": "^0.15.3",
"@solidjs/start": "^1.1.1",
"clsx": "2.1.1",
"semantic-release": "24.2.3",
"solid-js": "^1.9.5",
"tsup": "8.3.6",
"typescript": "5.7.3",
"vinxi": "^0.5.3"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"dependencies": {
"@thi.ng/math": "5.11.21"
}
}