-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
129 lines (129 loc) · 3.17 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "sonik",
"description": "The meta-framework for Edges",
"version": "0.1.1",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"type": "module",
"scripts": {
"test": "yarn test:unit && yarn test:integration",
"test:unit": "vitest --run test/unit",
"test:integration": "run-s 'test:integration:*'",
"test:integration:hono-jsx": "vitest run -c ./test/hono-jsx/vitest.config.ts ./test/hono-jsx/integration.test.ts",
"test:integration:api": "vitest run -c ./test/api/vitest.config.ts ./test/api/integration.test.ts",
"build": "rimraf dist && tsup && publint",
"watch": "tsup --watch",
"lint": "eslint src/**.ts",
"lint:fix": "eslint src/**.ts --fix",
"prerelease": "yarn test && yarn build",
"release": "np"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js"
},
"./misc": {
"types": "./dist/misc.d.ts",
"import": "./dist/misc.js"
},
"./server": {
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"import": "./dist/client/index.js"
},
"./utils/*": {
"types": "./dist/utils/*.d.ts",
"import": "./dist/utils/*.js"
},
"./vite": {
"types": "./dist/vite/index.d.ts",
"import": "./dist/vite/index.js"
},
"./default": {
"types": "./dist/default/index.d.ts",
"import": "./dist/default/index.js"
}
},
"typesVersions": {
"*": {
"types": [
"./dist/types"
],
"server": [
"./dist/server"
],
"misc": [
"./dist/misc"
],
"client": [
"./dist/client"
],
"utils/*": [
"./dist/utils/*"
],
"vite": [
"./dist/vite"
],
"default": [
"./dist/default"
]
}
},
"author": "Yusuke Wada <[email protected]> (https://github.com/yusukebe)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sonikjs/sonik.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"homepage": "https://github.com/sonikjs/sonik",
"dependencies": {
"@babel/generator": "^7.22.9",
"@babel/parser": "^7.22.7",
"@babel/traverse": "^7.22.8",
"@babel/types": "^7.22.5",
"@hono/vite-dev-server": "^0.0.10"
},
"peerDependencies": {
"hono": "3.x"
},
"devDependencies": {
"@hono/eslint-config": "^0.0.3",
"@mdx-js/rollup": "^2.3.0",
"@playwright/test": "^1.37.0",
"@types/babel__core": "^7.20.1",
"@types/babel__generator": "^7.6.4",
"@types/babel__traverse": "^7.20.1",
"@types/glob": "^8.1.0",
"esbuild": "^0.19.2",
"eslint": "^8.55.0",
"glob": "^10.3.10",
"hono": "^3.11.7",
"jsdom": "^22.1.0",
"np": "^7.7.0",
"npm-run-all": "^4.1.5",
"publint": "^0.1.12",
"rimraf": "^5.0.1",
"tsup": "^7.2.0",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"vitest": "^1.0.4"
},
"engines": {
"node": ">=18.14.1"
}
}