-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.82 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@s1seven/json-ui",
"description": "A UI for creating JSON documents according to a JSON schema.",
"author": "Christoph Bühler",
"license": "MIT",
"homepage": "https://www.s1seven.com",
"repository": {
"type": "git",
"url": "https://github.com/s1seven/json-ui/"
},
"bugs": {
"url": "https://github.com/s1seven/json-ui/issues"
},
"keywords": [
"json",
"schema",
"form",
"builder",
"composer",
"s1seven"
],
"private": false,
"version": "0.38.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"publish-minor": "npm run build && npm version minor && npm publish --access public && git push && git push --tags",
"link": "npm link",
"test": "jest",
"test:update-snapshots": "npm test -- -u"
},
"main": "./dist/json-ui.umd.js",
"module": "./dist/json-ui.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/json-ui.es.js",
"require": "./dist/json-ui.umd.js"
}
},
"files": [
"dist",
"README.md"
],
"dependencies": {
"@types/ajv": "1.0.0",
"ajv": "8.12.0",
"ajv-formats": "2.1.1",
"imask": "7.1.3",
"lit": "2.7.5",
"lodash": "4.17.21"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.4",
"@types/jest": "^29.5.3",
"@types/json-schema": "^7.0.12",
"@types/lodash": "^4.14.196",
"@types/node": "^20.4.5",
"autoprefixer": "^10.4.14",
"cross-fetch": "^4.0.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"postcss": "^8.4.26",
"postcss-import": "^15.1.0",
"postcss-nesting": "^12.0.1",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.0.2",
"vite": "^4.4.0",
"vite-plugin-dts": "^3.4.0",
"vite-tsconfig-paths": "^4.2.0"
}
}