-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
71 lines (71 loc) · 1.93 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
{
"name": "@jsfe/shoelace",
"version": "0.4.0",
"description": "Shoelace v2 forms, auto-generated by JSON schemas.",
"keywords": [
"json-schema",
"shoelace",
"forms",
"generation",
"declarative",
"openapi",
"mongodb",
"page-builder"
],
"homepage": "https://jsfe.js.org",
"repository": {
"type": "git",
"url": "https://github.com/json-schema-form-element/jsfe",
"directory": "packages/shoelace"
},
"license": "ISC",
"author": {
"name": "Julian Cataldo",
"email": "[email protected]",
"url": "https://www.juliancataldo.com"
},
"type": "module",
"types": "./dist/esm/index.d.ts",
"exports": {
".": "./dist/esm/index.js",
"./scss": "./src/styles.scss",
"./scss/*": "./src/widgets/*.scss",
"./css": "./dist/esm/styles.css",
"./jss": "./dist/esm/styles.js",
"./min": "./dist/esm-min"
},
"files": [
"./dist/esm",
"./dist/esm-min",
"./src/**/*.scss",
"./vscode.html-custom-data.json",
"./vscode.css-custom-data.json",
"./custom-elements.json"
],
"scripts": {
"build": "pnpm clean ; pnpm ts:build ; pnpm css:build ; pnpm css:to-js",
"clean": "rm -rf ./dist",
"css:build": "pnpm sass --no-source-map src/styles.scss:dist/esm/styles.css",
"css:dev": "pnpm sass --watch src/styles.scss:dist/esm/styles.css & pnpm css:to-js:dev",
"css:to-js": "node ../../scripts/css-to-js.js dist/esm/styles.css",
"css:to-js:dev": "nodemon dist/esm/styles.css -x 'pnpm css:to-js'",
"dev": "pnpm ts:dev & pnpm css:dev & (sleep 3 && pnpm css:to-js:dev)",
"ts:build": "pnpm tsc",
"ts:dev": "pnpm tsc --watch"
},
"dependencies": {
"@jsfe/form": "workspace:*",
"@jsfe/types": "workspace:*"
},
"devDependencies": {
"sass": "^1.69.5",
"typescript": "^5.3.2"
},
"peerDependencies": {
"@shoelace-style/shoelace": "^2.12.0",
"lit": "^3.1.0"
},
"publishConfig": {
"access": "public"
}
}