-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 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
55
56
{
"name": "solid-tweakpane",
"version": "0.6.0",
"description": "Solid components for Tweakpane library",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"types": "./dist/index.d.ts",
"exports": {
"node": {
"import": "./dist/es/index.js",
"require": "./dist/cjs/index.js"
},
"import": "./dist/es/index.js",
"require": "./dist/cjs/index.js"
},
"files": [
"./dist"
],
"scripts": {
"build": "rollup -c && tsc"
},
"keywords": [
"solid",
"tweakpane"
],
"author": "foxpro [email protected]",
"license": "ISC",
"homepage": "https://github.com/MrFoxPro/solid-tweakpane",
"bugs": {
"url": "https://github.com/MrFoxPro/solid-tweakpane/issues"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-strip": "^2.1.0",
"@types/ts-nameof": "^4.2.1",
"babel-plugin-ts-nameof": "^4.2.1",
"babel-preset-solid": "^1.5.7",
"babel-preset-typescript": "7.0.0-alpha.19",
"prettier": "^2.7.1",
"rollup": "^2.79.1",
"rollup-plugin-delete": "^2.0.0",
"solid-js": "^1.5.4",
"typescript": "^4.8.4"
},
"dependencies": {
"@tweakpane/core": "^1.1.0",
"tweakpane": "^3.1.0"
},
"peerDependencies": {
"solid-js": "^1.5.4"
}
}