-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.93 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.93 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
{
"name": "@sillsdev/scripture",
"version": "2.0.4",
"description": "TypeScript partial port of `libpalaso/SIL.Scripture`",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"LICENSE",
"README.md",
"dist",
"!dist/package.json",
"src"
],
"scripts": {
"build": "tsc --project tsconfig.build.json && vite build && dts-bundle-generator --config ./dts-bundle-generator.config.ts && npm run prettier:dts",
"lint": "eslint . --cache --cache-location ./.eslintcache --max-warnings 0",
"prepare": "npm run build",
"prettier": "prettier --write \"**/*.{ts,js,json,md,yml}\"",
"prettier:ci": "prettier --list-different \"**/*.{ts,js,json,md,yml}\"",
"prettier:dts": "prettier --write \"dist/**/*.d.ts\"",
"test": "vitest",
"test:ci": "vitest run --coverage --reporter=default --reporter=junit --outputFile.junit=./junit.xml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sillsdev/scripture.git"
},
"keywords": [
"typescript",
"linguistics",
"language",
"scripture",
"reference"
],
"author": "SIL Global",
"license": "MIT",
"bugs": {
"url": "https://github.com/sillsdev/scripture/issues"
},
"homepage": "https://github.com/sillsdev/scripture#readme",
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@types/node": "^24.12.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/coverage-v8": "^4.0.18",
"dts-bundle-generator": "^9.5.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"volta": {
"node": "24.11.0"
}
}