-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 876 Bytes
/
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
{
"name": "liquid",
"version": "1.0.0",
"type": "module",
"description": "",
"main": "src/index.ts",
"scripts": {
"dev": "clear;bun run ./src/playground.ts",
"test": "bun run vitest",
"lint": "eslint '*/**/*.{ts,tsx}' --quiet --fix",
"format": "prettier --write '*/**/*.{ts,tsx,json}'",
"build": "bun run build.mjs"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"bun-types": "^1.0.12",
"chokidar": "^3.6.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"typescript": "^5.2",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
},
"dependencies": {
"chalk": "^5.3.0",
"cli-table3": "^0.6.5"
}
}