-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.42 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
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
{
"name": "marko-zag",
"version": "0.0.2",
"description": "[WIP] A Zag plugin for the Marko framework",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"author": {
"name": "Saulo Vallory",
"email": "[email protected]",
"url": "https://about.me/saulovallory"
},
"repository": {
"type": "git",
"url": "https://github.com/svallory/marko-zag"
},
"files": [
"dist/**/*",
"src",
"marko.json",
"!**/*.test.*",
"!*.tsbuildinfo",
"!**/{,*.}stories.*"
],
"scripts": {
"@ci:build": "npm run build",
"@ci:lint": "npm run lint",
"@ci:test": "npm run test -- run --coverage",
"build": "npm run clean && mtc",
"clean": "rm -rf coverage dist node_modules/.{cache,vite,vitest}",
"format": "eslint -f unix --fix .; stylelint -f unix --fix '**/*.css'; prettier . --write --log-level=warn; sort-package-json --quiet",
"lint": "mtc && eslint -f unix . && stylelint -f unix '**/*.css' && prettier . --check --log-level=warn && sort-package-json --quiet --check",
"storybook": "storybook dev",
"test": "vitest"
},
"dependencies": {
"@marko/tags-api-preview": "^0.7.2",
"@zag-js/checkbox": "0.31.1",
"@zag-js/core": "0.31.1",
"@zag-js/utils": "0.31.1"
},
"devDependencies": {
"@marko/compiler": "^5.34.6",
"@marko/testing-library": "^6.1.5",
"@marko/type-check": "^1.1.3",
"@marko/vite": "^4.1.1",
"@storybook/addon-actions": "7.6.10",
"@storybook/addon-essentials": "^7.6.10",
"@storybook/addon-interactions": "^7.6.10",
"@storybook/marko": "^8.0.2",
"@storybook/marko-vite": "^1.0.4",
"@testing-library/jest-dom": "^6.3.0",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitest/coverage-v8": "^1.2.1",
"@zag-js/types": "0.33.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-testing-library": "^6.2.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"prettier-plugin-marko": "^3.1.2",
"sort-package-json": "^2.6.0",
"storybook": "^7.6.10",
"stylelint": "^16.2.0",
"stylelint-config-standard": "^36.0.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.1"
},
"peerDependencies": {
"marko": "^5.32.7"
}
}