forked from mvdschee/use
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 908 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 908 Bytes
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
{
"name": "nefty-utils-lib",
"private": true,
"license": "MIT",
"author": {
"name": "NeftyBlocks",
"email": "info@neftyblocks.com",
"url": "https://neftyblocks.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neftyblocks/use.git"
},
"contributors": [
"Max van der Schee"
],
"type": "module",
"scripts": {
"dev": "cd lib && pnpm dev",
"build": "cd lib && pnpm build",
"play": "pnpm build && cd playground && pnpm dev",
"play:build": "pnpm build && cd playground && pnpm build",
"pub": "pnpm build && cd lib && pnpm publish"
},
"packageManager": "pnpm@9.0.6",
"devDependencies": {
"vite": "^5.4.0",
"typescript": "^5.x",
"sass": "^1.77.8",
"@biomejs/biome": "^1.8.3",
"vite-plugin-dts": "^4.0.2"
}
}