-
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.72 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.72 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": "@internetarchive/reviews",
"description": "Web component for displaying and editing Internet Archive reviews",
"repository": {
"type": "git",
"url": "git+https://github.com/internetarchive/iaux-reviews.git"
},
"license": "AGPL-3.0-only",
"author": "Internet Archive",
"version": "1.0.6",
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
"prepare": "rimraf dist && tsc && husky install",
"build": "tsc",
"lint": "eslint . && prettier \"**/*.ts\" --check",
"format": "eslint . --fix && prettier \"**/*.ts\" --write",
"circular": "madge --circular --extensions ts .",
"test": "tsc && npm run lint && npm run circular && wtr --coverage",
"test:watch": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\"",
"ghpages:build": "rimraf ghpages && npm run prepare && vite build",
"ghpages:publish": "npm run ghpages:prepare -e $(git branch --show-current)",
"ghpages:prepare": "npm run ghpages:build && touch ghpages/.nojekyll && npm run ghpages:generate",
"ghpages:generate": "gh-pages -t -d ghpages -m \"Build for $(git log --pretty=format:\"%h %an %ai %s\" -n1) [skip ci]\""
},
"types": "dist/index.d.ts",
"devDependencies": {
"@open-wc/eslint-config": "^12.0.3",
"@open-wc/testing": "^4.0.0",
"@types/mocha": "^10.0.10",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"@web/dev-server": "^0.4.6",
"@web/test-runner": "^0.20.0",
"concurrently": "^9.1.2",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-lit": "^1.15.0",
"eslint-plugin-lit-a11y": "^4.1.4",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-wc": "^3.0.0",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"madge": "^8.0.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"sinon": "^21.0.0",
"ts-lit-plugin": "^2.0.2",
"tslib": "^2.8.1",
"typescript": "^5.8.2",
"vite": "^6.0.7"
},
"publishConfig": {
"access": "public"
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"dependencies": {
"@internetarchive/fetch-handler-service": "^1.0.1",
"@internetarchive/ia-activity-indicator": "^0.0.6",
"@internetarchive/ia-styles": "^1.0.0",
"@internetarchive/metadata-service": "^1.0.4",
"@internetarchive/recaptcha-manager": "^1.0.0",
"@lit/localize": "^0.12.2",
"dompurify": "^3.2.5",
"lit": "^2.8.0"
}
}