-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.3 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
{
"name": "@atomico/components",
"description": "Generic and utility webcomponents created with Atomico",
"version": "2.9.0",
"type": "module",
"workspaces": [
"src/**/*"
],
"publishConfig": {
"access": "public"
},
"author": {
"name": "UpperCod",
"email": "[email protected]",
"url": "https://github.com/uppercod"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/atomicojs/components.git"
},
"bugs": {
"url": "https://github.com/atomicojs/components/issues"
},
"homepage": "https://atomico.gitbook.io/doc/atomico/atomico-components",
"scripts": {
"start": "vite --force",
"build": "vite build",
"test": "vitest ",
"components:publish": "npm run component:publish -w=src/components",
"components:create": "scaff templates/component src/components"
},
"dependencies": {
"@atomico/hooks": "^3.45.0",
"@atomico/router": "^1.2.0",
"atomico": "^1.66.0"
},
"devDependencies": {
"@atomico/exports": "^1.4.0",
"@atomico/postcss-tokens": "^1.4.4",
"@atomico/scaffold": "^0.2.0",
"@atomico/tsconfig": "^1.1.1",
"@atomico/vite": "^2.3.2",
"typescript": "^4.7.4",
"vite": "^2.9.9",
"vitest": "^0.9.4"
},
"postcss": {
"plugins": {
"@atomico/postcss-tokens": {}
}
}
}