-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "thq-lit-components",
"version": "1.0.1",
"description": "",
"main": "index.js",
"type": "module",
"exports": {
".": {
"import": "./dist/thq-lit-components.js",
"require": "./dist/thq-lit-components.cjs.js"
},
"./cjs": {
"import": "./dist/thq-lit-components.cjs.js",
"require": "./dist/thq-lit-components.cjs.js"
},
"./umd": {
"import": "./dist/thq-lit-components.umd.js",
"require": "./dist/thq-lit-components.umd.js"
}
},
"scripts": {
"build": "vite build & node build.umd.js",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teleporthq/thq-lit-components.git"
},
"author": "TeleportHQ",
"license": "ISC",
"bugs": {
"url": "https://github.com/teleporthq/thq-lit-components/issues"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm test"
}
},
"homepage": "https://github.com/teleporthq/thq-lit-components#readme",
"devDependencies": {
"jsdom": "^22.1.0",
"pretty-quick": "^3.1.3",
"vite": "^4.3.9",
"vitest": "^0.32.4"
},
"dependencies": {
"dayjs": "^1.11.9",
"lit": "^2.7.5"
}
}