-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.51 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.51 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
{
"name": "@numbersprotocol/capture-eye",
"version": "1.11.1",
"description": "Capture Eye widget seamlessly integrates into your website, facilitating secure and transparent provenance display and purchases of digital content directly from the creator",
"main": "dist/capture-eye.js",
"module": "dist/capture-eye.js",
"types": "dist/capture-eye.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c && cp dist/capture-eye.bundled.js .",
"build:watch": "rollup -c -w",
"build:test": "tsc",
"clean": "rimraf dist && rimraf capture-eye.bundled.js",
"lint": "npm run lint:eslint",
"lint:eslint": "eslint 'src/**/*.ts'",
"format": "prettier \"**/*.{html,json,md,ts}\" --ignore-path ./.eslintignore --write",
"analyze": "cem analyze --litelement --globs \"src/**/*.ts\"",
"analyze:watch": "cem analyze --litelement --globs \"src/**/*.ts\" --watch",
"serve": "wds --watch",
"serve:prod": "MODE=prod npm run serve",
"test": "npm run build:test && npm run test:dev && npm run test:prod",
"test:dev": "wtr",
"test:watch": "wtr --watch",
"test:prod": "MODE=prod wtr",
"test:prod:watch": "MODE=prod wtr --watch",
"checksize": "rollup -c ; cat capture-eye.bundled.js | gzip -9 | wc -c ; rm capture-eye.bundled.js",
"knip": "knip"
},
"keywords": [
"web-components",
"lit-element",
"typescript",
"lit"
],
"author": "Numbers Protocol",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/numbersprotocol/capture-eye.git"
},
"dependencies": {
"lit": "^3.0.0"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.6.3",
"@eslint/js": "^9.39.3",
"@open-wc/testing": "^3.1.5",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/mocha": "^10.0.9",
"@types/node": "^22.5.3",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@web/dev-server": "^0.4.6",
"@web/test-runner": "^0.19.0",
"@web/test-runner-playwright": "^0.11.0",
"@webcomponents/webcomponentsjs": "^2.8.0",
"eslint": "^10.0.1",
"eslint-plugin-lit": "^2.2.1",
"knip": "^5.29.2",
"prettier": "^2.6.2",
"rimraf": "^6.1.3",
"rollup": "^4.60.0",
"rollup-plugin-summary": "^3.0.1",
"sinon": "^18.0.0",
"typescript": "~5.2.0",
"typescript-eslint": "^8.56.0"
},
"customElements": "custom-elements.json"
}