-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.09 KB
/
package.json
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
{
"name": "spec-pattern-ts",
"description": "Specification pattern for TypeScript",
"version": "1.0.4",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/hansanghyeon/spec-pattern-ts.git"
},
"keywords": [
"hyeon",
"typescript",
"specification"
],
"author": "hyeon",
"license": "MIT",
"bugs": {
"url": "https://github.com/hansanghyeon/spec-pattern-ts/issues"
},
"homepage": "https://github.com/hansanghyeon/spec-pattern-ts#readme",
"scripts": {
"build": "nanobundle build",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"bun-types": "latest",
"nanobundle": "^1.6.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.cjs",
"import": "./lib/index.mjs"
},
"./package.json": "./package.json"
},
"files": [
"lib"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}