-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.2 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.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
{
"name": "@thomascsd/stools",
"version": "3.0.0",
"license": "MIT",
"repository": {
"url": "git+https://github.com/thomascsd/stools.git"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"typings": "./dist/index.d.ts",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"start": "dts watch",
"build": "tsdown",
"test": "vitest",
"coverage": "vitest run --coverage",
"vitest:ui": "vitest --ui",
"lint": "eslint . --ext .ts",
"deploy": "cd ./dist & npm publish --access public --dry-run",
"docs": "typedoc --out docs src/index.ts"
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"endOfLine": "crlf"
},
"author": "thomascsd",
"devDependencies": {
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"dotenv": "^16.4.7",
"tsdown": "^0.15.6",
"tslib": "^2.8.1",
"typedoc": "^0.27.6",
"typescript": "^5.7.2",
"vitest": "^3.2.4"
},
"dependencies": {
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0"
}
}