-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
41
42
43
44
45
46
47
48
49
50
{
"name": "@eramis/atex",
"description": "Write JSX with ATEX, an esoteric tool for the VTEX Store Framework 💣",
"version": "1.0.0",
"license": "LGPL-3.0-or-later",
"type": "module",
"repository": "github:ezequielramis/atex",
"author": {
"name": "Ezequiel Ramis Folberg",
"email": "[email protected]",
"url": "https://ramis.ar"
},
"scripts": {
"dev": "pushd examples; tsx ../src/bin.ts",
"test": "vitest --coverage --silent",
"build": "rimraf dist; tsup src/*.ts --format esm --minify",
"start": "pushd examples; ../dist/bin.js"
},
"bin": {
"atex": "./dist/bin.js"
},
"types": "./types/index.d.ts",
"files": ["dist", "types"],
"keywords": [
"vtex",
"ecommerce",
"vite",
"jsx",
"tsx",
"dsl",
"framework",
"meta-framework"
],
"dependencies": {
"cac": "^6.7.14",
"picocolors": "^1.0.0",
"vite": "^4.4.8",
"vite-plugin-json5": "1.0.7",
"vite-tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@types/node": "^20.4.6",
"@vitest/coverage-v8": "^0.34.1",
"rimraf": "^5.0.1",
"tsup": "^7.2.0",
"tsx": "^3.12.7",
"typescript": "^5.1.6",
"vitest": "^0.34.1"
}
}