-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 803 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 803 Bytes
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
{
"name": "@kitz/syn",
"version": "0.0.0-kitz-release",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jasonkuhrt/kitz.git"
},
"description": "Syntax utilities",
"type": "module",
"sideEffects": false,
"exports": {
".": "./src/_.ts",
"./__": "./src/__.ts"
},
"dependencies": {
"@kitz/bldr": "workspace:*",
"@kitz/core": "workspace:*"
},
"scripts": {
"build": "tsgo -b tsconfig.build.json --clean && tsgo -b tsconfig.build.json",
"dev": "tsgo -p tsconfig.build.json --watch",
"check:types": "tsgo --noEmit",
"check:lint": "oxlint src/",
"check:package": "publint && attw --pack --ignore-rules no-resolution cjs-resolves-to-esm internal-resolution-error"
},
"files": [
"build",
"src"
]
}