-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.42 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
{
"name": "interpol",
"private": true,
"version": "0.0.0",
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/willybrauner/interpol.git"
},
"keywords": [
"interpol",
"interpolation",
"animation",
"timeline",
"dom"
],
"scripts": {
"clean": "rm -rf dist",
"build": "FORCE_COLOR=1 turbo run build",
"build:watch": "FORCE_COLOR=1 turbo run build -- --watch",
"dev": "FORCE_COLOR=1 turbo run dev --concurrency 20",
"test:watch": "vitest --reporter verbose",
"test": "vitest run",
"size": "size-limit",
"ncu": "find . -name 'node_modules' -prune -o -name 'package.json' -execdir ncu -u ';'",
"pre-publish": "npm run build && npm run test",
"ci:version": "pnpm changeset version && pnpm --filter \"@wbe/*\" install --lockfile-only",
"ci:publish": "pnpm build && pnpm changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@size-limit/preset-small-lib": "^11.1.4",
"@types/node": "^22.1.0",
"jsdom": "^24.1.1",
"prettier": "^3.3.3",
"size-limit": "^11.1.4",
"turbo": "^2.0.12",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"vitest": "^2.0.5"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"packageManager": "[email protected]",
"size-limit": [
{
"name": "@wbe/interpol",
"path": "packages/interpol/dist/interpol.js",
"limit": "3.5 KB"
}
]
}