-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"name": "adastra-plugin",
"version": "0.4.0",
"author": "Odestry",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup src/index.ts --format cjs,esm --dts --publicDir",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:snap": "vitest -u",
"coverage": "vitest run --coverage"
},
"dependencies": {
"adastra-branding": "workspace:*",
"debug": "^4.3.4",
"fast-glob": "^3.2.11"
},
"devDependencies": {
"adastra-tsconfig": "workspace:*",
"eslint-config-adastra": "workspace:*",
"@types/debug": "^4.1.7",
"eslint": "^7.32.0"
},
"peerDependencies": {
"vite": "^4.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/odestry/adastra.git",
"directory": "packages/adastra-plugin"
},
"keywords": [
"adastra",
"vite",
"shopify"
]
}