-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
91 lines (91 loc) · 2.81 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@legumeinfo/web-components",
"version": "1.6.0",
"description": "Web Components for the Legume Information System and other AgBio databases",
"repository": {
"type": "git",
"url": "git+https://github.com/legumeinfo/web-components.git"
},
"bugs": {
"url": "https://github.com/legumeinfo/web-components/issues"
},
"homepage": "https://github.com/legumeinfo/web-components#readme",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib",
"/dist"
],
"type": "module",
"scripts": {
"build": "tsc",
"build:clean": "rimraf lib",
"build:watch": "tsc --watch",
"clean": "npm run bundle:clean & npm run build:clean & npm run test:clean",
"lint": "npm run lint:eslint",
"lint:eslint": "eslint src/*.ts src/**/*.ts",
"lint:eslint-config-prettier": "eslint-config-prettier src/*.ts src/**/*.ts",
"lint:lit-analyzer": "lit-analyzer src/*.ts src/**/*.ts",
"format": "prettier src/*.ts src/**/*.ts --write",
"docs": "npm run docs:clean && npm run docs:gen",
"docs:clean": "rimraf docs",
"docs:gen": "npx typedoc --options typedoc.json",
"docs:serve": "wds --root-dir=docs --node-resolve --watch",
"prepublish": "npm run clean && npm run build && npm run bundle",
"serve": "wds --watch",
"serve:prod": "MODE=prod npm run serve",
"test": "npm run test:dev && npm run test:prod",
"test:clean": "rimraf test",
"test:dev": "wtr",
"test:watch": "wtr --watch",
"test:prod": "MODE=prod wtr",
"test:prod:watch": "MODE=prod wtr --watch",
"bundle": "rollup -c rollup.config.js",
"bundle:clean": "rimraf dist",
"bundle:watch": "rollup -c -w",
"postinstall": "husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"keywords": [
"typescript",
"lit",
"web-components",
"uikit",
"legumes",
"agbio",
"biology"
],
"author": "Legume Information System",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^9.13.0",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/eslint__js": "^8.42.3",
"@web/dev-server": "^0.4.6",
"@web/dev-server-legacy": "^2.1.1",
"@web/test-runner": "^0.19.0",
"@web/test-runner-playwright": "^0.11.0",
"@webcomponents/webcomponentsjs": "^2.8.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"lit-analyzer": "^2.0.3",
"pinst": "^3.0.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"typedoc": "^0.26.10",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"uikit": "^3.21.13"
},
"dependencies": {
"lit": "^3.2.1"
}
}