-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.27 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.27 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
{
"name": "oc-client-browser",
"version": "2.1.10",
"description": "OC browser client",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/opencomponents/oc-client-browser.git"
},
"bugs": {
"url": "https://github.com/opencomponents/oc-client-browser/issues"
},
"homepage": "https://github.com/opencomponents/oc-client-browser#readme",
"keywords": ["oc", "opencomponents"],
"author": {
"name": "Nick Balestra",
"email": "nick@balestra.ch"
},
"license": "MIT",
"files": ["tasks", "dist", "vendor", "src", "index.js", "index.d.ts"],
"scripts": {
"start": "serve -l 5173",
"test": "npm run build && npx playwright test --reporter=html",
"build": "node tasks/build.js",
"lint": "npx @biomejs/biome check --write .",
"precommit": "lint-staged",
"prepublish": "npm run build"
},
"lint-staged": {
"src/**/*.js": ["npm run lint"],
"tasks/*.js": ["npm run lint"],
"test/*.js": ["npm run lint"]
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@playwright/test": "^1.50.1",
"fs-extra": "10.0.0",
"lefthook": "^1.11.2",
"serve": "^14.2.4",
"typescript": "^5.7.3"
},
"dependencies": {
"@rdevis/turbo-stream": "^2.4.1",
"esbuild": "^0.25.0",
"uglify-js": "^3.14.2",
"universalify": "2.0.0"
}
}