-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "templeffect",
"version": "0.1.1",
"description": "String templates with type-safety",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "biome lint --write",
"test:watch": "vitest --typecheck",
"test": "vitest run --typecheck",
"typecheck": "tsc --noEmit"
},
"keywords": [
"string",
"template",
"typescript",
"type-safety",
"effect",
"schema"
],
"author": "Tylor Steinberger <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228",
"dependencies": {
"effect": "^3.11.9"
},
"peerDependencies": {
"effect": "^3.11.9"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@effect/vitest": "^0.16.0",
"@types/node": "^22.10.2",
"typescript": "^5.4.2",
"vitest": "^2.1.8"
}
}