-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.17 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
{
"name": "tsprose",
"version": "1.0.1",
"type": "module",
"description": "📜 Write and parse any prose in TypeScript TSX!",
"license": "MIT",
"keywords": [
"prose",
"typescript",
"tsx",
"text-processor",
"parser"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Gwynerva/tsprose.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./jsx-runtime": {
"import": "./dist/jsx-runtime.js",
"types": "./dist/jsx-runtime.d.ts"
},
"./jsx-dev-runtime": {
"import": "./dist/jsx-dev-runtime.js",
"types": "./dist/jsx-dev-runtime.d.ts"
},
"./externals": "./dist/externals.d.ts",
"./jsx": "./dist/jsx.d.ts"
},
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && bun tsc --project ./tsconfig.src.json && bun postBuild.ts",
"prepack": "bun run build",
"test": "bun vitest run",
"format": "prettier --write ."
},
"devDependencies": {
"@types/node": "^25.3.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}