-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.45 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.45 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@legumeinfo/web-components-graphql",
"version": "1.0.0",
"description": "A TypeScript library that provides code for usng LIS Web Components with the LIS GraphQL Server",
"repository": {
"type": "git",
"url": "https://github.com/legumeinfo/web-components-graphql"
},
"bugs": {
"url": "https://github.com/legumeinfo/web-components-graphql/issues"
},
"homepage": "https://github.com/legumeinfo/web-components-graphql#readme",
"main": "lib/main.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",
"lint": "npm run lint:eslint",
"lint:eslint": "eslint \"src/*.ts\" \"src/**/*.ts\"",
"lint:eslint-config-prettier": "eslint-config-prettier \"src/*.ts\" \"src/**/*.ts\"",
"format": "prettier \"src/*.ts\" \"src/**/*.ts\" --write",
"prepublish": "npm run clean && npm run build && npm run bundle",
"serve": "wds --watch",
"serve:prod": "MODE=prod npm run serve",
"test": "jest",
"test:watch": "jest --watch",
"bundle": "rollup -c rollup.config.js",
"bundle:clean": "rimraf dist",
"bundle:watch": "rollup -c -w",
"preinstall": "scripts/build-dependencies.cjs",
"postinstall": "husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"keywords": [
"graphql",
"typescript",
"web components",
"legumes",
"agbio",
"biology"
],
"author": "Legume Information System",
"license": "Apache-2.0",
"devDependencies": {
"@legumeinfo/web-components": "file:dep/web-components",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"@web/dev-server": "^0.4.5",
"@web/dev-server-import-maps": "^0.2.1",
"@web/dev-server-legacy": "^2.1.1",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.5.2",
"pinst": "^3.0.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"rollup": "^4.40.2",
"ts-jest": "^29.3.2",
"typescript": "^5.6.3",
"uikit": "^3.23.6"
},
"peerDependencies": {
"@legumeinfo/web-components": "^1.4.0"
}
}