-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.52 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.52 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": "@glideapps/ts-necessities",
"version": "2.4.0",
"description": "Small utilities to make life with TypeScript easier",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && tsc -d --emitDeclarationOnly --outDir dist && node build.js",
"lint": "eslint src --ext .ts,.tsx",
"typedoc": "typedoc",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"keywords": [
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/glideapps/ts-necessities.git"
},
"author": "Glide",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.23.0",
"@types/node": "^22.13.14",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"@vitest/coverage-v8": "^3.1.1",
"esbuild": "^0.25.2",
"eslint": "^9.23.0",
"eslint-plugin-import": "^2.31.0",
"typedoc": "^0.28.1",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0",
"vitest": "^3.1.1"
}
}