-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) 路 1.53 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) 路 1.53 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
{
"name": "@mateothegreat/lib",
"version": "0.0.0",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
"./dist/*": {
"types": "./dist/*.ts",
"import": "./dist/*.ts"
},
"./*": {
"types": "./src/*.d.ts",
"import": "./src/*.js"
}
},
"files": [
"dist",
"src",
"docs"
],
"repository": {
"type": "git",
"url": "https://github.com/mateothegreat/lib",
"directory": "packages/lib"
},
"description": "typescript library",
"keywords": [
"typescript",
"library"
],
"author": {
"name": "Matthew Davis",
"email": "matthew@matthewdavis.io"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"release": "npm version from-git && npm publish --access public",
"test": "vitest run",
"test:watch": "vitest --watch",
"dev:sync": "npm run build && npm link",
"dev:sync:watch": "find . -name '*.ts' | entr -c npm run dev:sync"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"devDependencies": {
"@types/node": "^24.0.7",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.31.0",
"eslint-plugin-markdown": "^5.1.0",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.39.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}