-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 996 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 996 Bytes
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
{
"name": "star-template-ts",
"version": "0.1.0",
"private": true,
"description": "CoderDeltaLAN star template (TypeScript)",
"license": "Apache-2.0",
"scripts": {
"lint": "eslint .",
"format": "prettier -w .",
"build": "tsc -p tsconfig.json",
"test": "jest",
"format:check": "prettier -c . --ignore-unknown"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.7.0",
"prettier": "^3.3.0",
"ts-jest": "^29.1.1",
"typescript": "^5.5.0"
},
"files": [
"lib/src",
"README.md",
"LICENSE",
"SECURITY.md"
],
"main": "lib/src/index.js",
"exports": {
".": {
"default": "./lib/src/index.js",
"types": "./lib/src/index.d.ts"
}
},
"types": "lib/src/index.d.ts"
}