-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.9 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
{
"name": "@tmjeee/w-lib",
"version": "0.1.4",
"description": "A minimal, modern TypeScript library skeleton ready for publishing to npmjs.com. Includes helloWorld sample.",
"keywords": [
"typescript",
"library",
"npm",
"esm",
"hello-world",
"skeleton"
],
"license": "MIT",
"author": "tmjeee <tmjeee@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/tmjeee/w-lib.git"
},
"bugs": {
"url": "https://github.com/tmjeee/w-lib/issues"
},
"homepage": "https://github.com/tmjeee/w-lib#readme",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"CHANGELOG.md"
],
"sideEffects": false,
"engines": {
"node": ">=22.14.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build && npm run test",
"publish:npm": "npm run build && npm run test && npm publish --access public",
"publish:npm:dry": "npm run build && npm run test && npm publish --access public --dry-run"
},
"dependencies": {
"@angular/animations": "^21.2.13",
"@angular/cdk": "^21.2.11",
"@angular/common": "^21.2.0",
"@angular/compiler": "^21.2.0",
"@angular/core": "^21.2.0",
"@angular/forms": "^21.2.0",
"@angular/material": "^21.2.11",
"@angular/platform-browser": "^21.2.0",
"@angular/router": "^21.2.0",
"marked": "^18.0.4",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@types/node": "^22.15.0",
"jsdom": "^29.1.1",
"tsdown": "^0.20.3",
"typescript": "^5.9.3",
"vitest": "^4.0.8"
}
}