-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.18 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.18 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
{
"name": "ui-forms",
"version": "1.0.0",
"description": "Form rendering engine for the W3C UI vocabulary, used in Solid applications",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./autocomplete/autocompleteBar": "./lib/autocomplete/autocompleteBar.js",
"./autocomplete/autocompleteField": "./lib/autocomplete/autocompleteField.js",
"./autocomplete/autocompletePicker": "./lib/autocomplete/autocompletePicker.js",
"./autocomplete/publicData": "./lib/autocomplete/publicData.js",
"./autocomplete/language": "./lib/autocomplete/language.js",
"./basic": "./lib/basic.js",
"./comment": "./lib/comment.js",
"./fieldFunction": "./lib/fieldFunction.js",
"./fieldParams": "./lib/fieldParams.js"
},
"files": [
"lib"
],
"scripts": {
"build": "npm run build-lib && npm run build-types",
"build-lib": "babel src -d lib --source-maps --extensions \".ts,.js\"",
"build-types": "tsc --emitDeclarationOnly || true",
"watch": "babel src --out-dir lib --watch --source-maps --extensions \".ts,.js\"",
"clean": "rm -rf lib",
"test": "jest",
"jest": "jest",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/solidos/ui-forms.git"
},
"dependencies": {
"solid-ui-core": "^1.0.0"
},
"peerDependencies": {
"rdflib": "^2.2.34",
"solid-logic": "^3.0.7"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-async-to-generator": "^7.24.1",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@babel/runtime": "^7.24.1",
"@testing-library/dom": "^8.20.1",
"@types/jest": "^27.5.2",
"@types/node": "^18.19.26",
"isomorphic-fetch": "^3.0.0",
"jest": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"nock": "^13.5.4",
"rdflib": "^2.2.34",
"solid-logic": "^3.0.7",
"ts-jest": "^27.1.5",
"typescript": "^4.9.5"
}
}