-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "@joist/element",
"version": "4.0.1",
"type": "module",
"main": "./target/lib.js",
"module": "./target/lib.js",
"exports": {
".": "./target/lib.js",
"./*": "./target/lib/*",
"./package.json": "./package.json"
},
"files": ["src", "target"],
"sideEffects": false,
"description": "Intelligently apply styles to WebComponents",
"repository": {
"type": "git",
"url": "git+https://github.com/joist-framework/joist.git"
},
"keywords": ["TypeScript", "WebComponents", "CSS", "ShadowDOM"],
"author": "deebloo",
"license": "MIT",
"bugs": {
"url": "https://github.com/joist-framework/joist/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "wireit",
"build": "wireit"
},
"wireit": {
"build": {
"command": "tsc --build --pretty",
"clean": "if-file-deleted",
"files": ["src/**", "tsconfig.json", "../../tsconfig.json"],
"output": ["target/**", "tsconfig.tsbuildinfo"]
},
"test": {
"command": "wtr --config wtr.config.mjs",
"files": ["vitest.config.js", "target/**"],
"output": [],
"dependencies": ["build"]
}
}
}