-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 2.01 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
{
"name": "@biscuit-auth/web-components",
"type": "module",
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
"files": [
"dist/"
],
"author": "Geoffroy Couprie",
"version": "0.6.1",
"scripts": {
"start": "wds --node-resolve --open demo/",
"serve": "wds --node-resolve --open demo/ --watch",
"test": "wtr test/**/*.test.js --node-resolve",
"test:watch": "wtr --watch test/**/*.test.js --node-resolve",
"build": "tsc",
"prepublishOnly": "npm run build-lint && tsc && tsc -p tsconfig-cjs.json && cp tree-sitter.js dist/esm && cp tree-sitter.d.ts dist/esm && cp -r assets dist/",
"build-lint": "tsc && eslint src --ext .ts && prettier -c src",
"format": "prettier -w src",
"lint-fix": "eslint src --ext .ts --fix"
},
"dependencies": {
"@biscuit-auth/biscuit-wasm-support": "0.5.1",
"@codemirror/basic-setup": "^0.19.0",
"@codemirror/gutter": "^0.19.5",
"@codemirror/highlight": "^0.19.6",
"@codemirror/legacy-modes": "^0.19.0",
"@codemirror/rangeset": "^0.19.2",
"@codemirror/stream-parser": "^0.19.2",
"@codemirror/theme-one-dark": "^0.19.1",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"lit": "^2.0.0",
"lit-analyzer": "^1.2.1",
"tslib": "2.3.1",
"web-tree-sitter": "^0.20.7"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.6",
"@web/dev-server": "^0.1.28",
"@web/dev-server-esbuild": "^0.2.16",
"@web/test-runner": "^0.13.22",
"eslint": "^8.4.1",
"prettier": "^2.5.1",
"tslib": "2.3.1",
"typescript": "4.9.5",
"typescript-language-server": "^3.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/biscuit-auth/biscuit-web-components.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/biscuit-auth/biscuit-web-components/issues"
},
"homepage": "https://github.com/biscuit-auth/biscuit-web-components#readme",
"description": ""
}