-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.91 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.91 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "topspin",
"description": "Create forms from JSON Schema",
"version": "0.0.2",
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"dist",
"src"
],
"main": "./dist/topspin.cjs",
"module": "./dist/topspin.esm.js",
"exports": {
".": {
"import": "./dist/topspin.esm.js",
"require": "./dist/topspin.cjs"
},
"./dist/topspin.css": "./dist/topspin.css",
"./src/*.css": "./src/*.css"
},
"scripts": {
"dev:browser": "concurrently \"LIB_TARGET=browser vite build --mode development --outDir stories/browser/dist --watch\" \"LIB_TARGET=browser vite\"",
"dev:node": "LIB_TARGET=node ladle serve",
"dev": "npm run dev:node",
"build:browser": "LIB_TARGET=browser vite build",
"build:node": "LIB_TARGET=node vite build",
"build": "npm run build:node && npm run build:browser",
"lint": "eslint .",
"preview": "vite preview"
},
"keywords": [
"topspin",
"json-form",
"jsonform",
"json-schema-form",
"jsonschemaform",
"react",
"react-component",
"react-json-form",
"react-jsonschema-form"
],
"author": "Bharat Chauhan",
"license": "BSD-3-Clause",
"homepage": "https://github.com/topspin-js/topspin",
"bugs": "https://github.com/topspin-js/topspin/issues",
"repository": {
"type": "git",
"url": "https://github.com/topspin-js/topspin.git"
},
"funding": "https://github.com/sponsors/bhch/",
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@ladle/react": "^4.1.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.0",
"eslint": "^9.15.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"vite": "^6.0.1"
}
}