-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 983 Bytes
/
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
{
"name": "solid-knobs",
"version": "0.5.2",
"description": "Primitives for building user-friendly controls with SolidJS.",
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c",
"prepare": "npm run build",
"generate-docs": "typedoc --plugin typedoc-plugin-markdown --out docs src/index.ts --readme none --githubPages false --exclude \"**/node_modules/**/*\" --sort source-order",
"deploy-examples": "cd examples && npm run build && cd .. && gh-pages -d examples/dist"
},
"author": "maxjvh <[email protected]>",
"license": "MIT",
"repository": {
"url": "https://github.com/tahti-studio/solid-knobs"
},
"devDependencies": {
"gh-pages": "^4.0.0",
"solid-js": "^1.4.3",
"typedoc": "^0.23.5",
"typedoc-plugin-markdown": "^3.13.3",
"typescript": "^4.7.3",
"rollup": "^2.78.1",
"rollup-preset-solid": "^1.4.0"
}
}