-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.2 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
{
"name": "@internetarchive/iaux-item-metadata",
"description": "Item metadata models for the Internet Archive",
"repository": {
"type": "git",
"url": "git+https://github.com/internetarchive/iaux-item-metadata.git"
},
"license": "AGPL-3.0-only",
"author": "Internet Archive",
"version": "1.4.0",
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"vite\"",
"prepare": "rimraf dist && tsc && husky",
"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 && vitest run --coverage",
"test:watch": "vitest",
"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]\""
},
"dependencies": {
"@internetarchive/field-parsers": "^1.2.0",
"typescript-memoize": "^1.1.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.0.1",
"@vitest/coverage-v8": "^4.1.9",
"concurrently": "^10.0.3",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-html": "^8.1.4",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"lit": "^3.3.3",
"madge": "^8.0.0",
"prettier": "^3.8.4",
"rimraf": "^6.1.3",
"ts-lit-plugin": "^2.0.2",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0",
"vite": "^8.1.0",
"vitest": "^4.1.9"
},
"overrides": {
"madge": {
"typescript": "$typescript"
}
},
"publishConfig": {
"access": "public"
},
"types": "dist/index.d.ts",
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "none"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}