-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.95 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.95 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@prover-coder-ai/component-tagger",
"version": "1.0.32",
"description": "Component tagger Vite plugin and Babel plugin for JSX metadata",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./babel": {
"types": "./dist/shell/babel-plugin.d.ts",
"require": "./babel.cjs",
"import": "./dist/shell/babel-plugin.js"
}
},
"files": [
"dist",
"babel.cjs"
],
"directories": {
"doc": "doc"
},
"scripts": {
"prepack": "pnpm run build",
"prebuild": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "tsc -p tsconfig.build.json",
"dev": "tsc -p tsconfig.build.json --watch",
"lint": "npx @ton-ai-core/vibecode-linter src/",
"lint:tests": "npx @ton-ai-core/vibecode-linter tests/",
"lint:effect": "npx eslint --config eslint.effect-ts-check.config.mjs .",
"check": "pnpm run typecheck",
"prestart": "pnpm run build",
"start": "node dist/index.js",
"test": "pnpm run build && pnpm run lint:tests && vitest run",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProverCoderAI/effect-template.git"
},
"keywords": [
"effect",
"vite",
"babel",
"nextjs",
"plugin",
"tagger"
],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/ProverCoderAI/effect-template/issues"
},
"homepage": "https://github.com/ProverCoderAI/effect-template#readme",
"packageManager": "pnpm@10.33.0",
"dependencies": {
"@babel/core": "^7.29.0",
"@effect/platform": "^0.96.0",
"@effect/platform-node": "^0.106.0",
"effect": "^3.21.0"
},
"peerDependencies": {
"vite": "^8.0.7"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@biomejs/biome": "^2.4.10",
"@effect/eslint-plugin": "^0.3.2",
"@effect/language-service": "latest",
"@effect/vitest": "^0.29.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
"@eslint/compat": "2.0.5",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@prover-coder-ai/eslint-plugin-suggest-members": "^0.0.26",
"@ton-ai-core/vibecode-linter": "^1.0.11",
"@types/node": "^24.12.2",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"typescript-eslint": "^8.58.1",
"@vitest/coverage-v8": "^4.1.3",
"eslint": "^10.2.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-codegen": "0.34.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-sonarjs": "^4.0.2",
"eslint-plugin-sort-destructure-keys": "^3.0.0",
"eslint-plugin-unicorn": "^64.0.0",
"@vitest/eslint-plugin": "^1.6.14",
"globals": "^17.4.0",
"jscpd": "^4.0.8",
"typescript": "^6.0.2",
"vitest": "^4.1.3"
}
}