-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.99 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.99 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
{
"name": "typedconf",
"version": "1.3.0",
"description": "Properly typed configuration for your TypeScript project",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Aderinom/typedconf.git"
},
"keywords": [
"typescript",
"configuration",
"typed",
"config"
],
"source": "./src/index.ts",
"typings": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"devDependencies": {
"@types/jest": "~30.0.0",
"@types/node": "~24.8.1",
"@typescript-eslint/eslint-plugin": "~8.46.1",
"@typescript-eslint/parser": "~8.46.1",
"eslint": "~9.38.0",
"eslint-config-prettier": "~10.1.8",
"eslint-plugin-jest": "~29.0.1",
"eslint-plugin-prettier": "^5.5.4",
"jest": "~30.2.0",
"jest-junit": "^16.0.0",
"json5": "^2.2.3",
"microbundle": "^0.15.1",
"prettier": "~3.6.2",
"release-it": "^19.0.5",
"rimraf": "~6.0.1",
"ts-jest": "~29.4.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsutils": "~3.21.0",
"typescript": "~5.9.3"
},
"scripts": {
"build": "microbundle",
"build:watch": "microbundle watch",
"build:release": "rimraf dist && microbundle --tsconfig ./tsconfig.release.json",
"--------------": "",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"-------------- ": "",
"release": "release-it",
"-------------- ": "",
"prepublishOnly": "pnpm run test && pnpm run build:release",
"clean": "rimraf coverage dist tmp",
"lint": "eslint . --ext .ts --ext .mts",
"prettier": "prettier --config .prettierrc --write ."
},
"dependencies": {
"tslib": "~2.8.1"
},
"peerDependencies": {
"json5": "*"
},
"peerDependenciesMeta": {
"json5": {
"optional": true
}
},
"packageManager": "pnpm@10.18.3",
"release-it": {
"github": {
"release": true
}
},
"author": "Aaron Kelbsch",
"license": "MIT"
}