-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1 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
{
"name": "language-kit",
"version": "0.0.1",
"private": true,
"description": "Set of tools to parse and process custom languages",
"scripts": {
"test": "npm test -ws --if-present",
"play": "npm -w @language-kit/playground.vue run dev",
"play:node": "npm -w @language-kit/playground.node run start",
"lint": "eslint . --ext .vue,.ts,.js --max-warnings 0"
},
"author": "Henrique Oliveira",
"license": "MIT",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.10.0",
"fast-glob": "^3.2.12",
"tsup": "^6.7.0",
"tsx": "^3.12.6",
"typescript": "^5.0.3",
"vite": "^4.2.1",
"vitest": "^0.29.8"
},
"dependencies": {
"@nuxtjs/tailwindcss": "^6.7.0",
"@poppinss/cliui": "^3.0.5",
"@types/prompts": "^2.4.4",
"npm-run-all": "^4.1.5",
"prompts": "^2.4.2"
}
}