-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.06 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
79
80
81
82
{
"name": "@econify/moonshine-css",
"version": "0.2.0",
"description": "High-proof atomic CSS",
"keywords": [
"css",
"css-in-js",
"atomic css",
"zero-runtime",
"rust-lang"
],
"license": "ISC",
"homepage": "https://github.com/econify/moonshine-css#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/econify/moonshine-css.git"
},
"bugs": {
"url": "https://github.com/econify/moonshine-css/issues"
},
"contributors": [
{
"name": "Thomas Weustenfeld",
"email": "[email protected]"
},
{
"name": "Craig Fay",
"email": "[email protected]"
}
],
"main": "./dist/moonshine-css.cjs",
"module": "./dist/moonshine-css.mjs",
"types": "./dist/moonshine-css.d.ts",
"exports": {
".": {
"require": "./dist/moonshine-css.cjs",
"import": "./dist/moonshine-css.mjs"
}
},
"bin": {
"distill": "./bin/distill"
},
"files": [
"dist",
"bin"
],
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build && dts-bundle-generator --config ./dts-bundle-generator.config.ts",
"build:generator": "cd generator && make distill",
"lint": "tsc --noEmit && eslint .",
"format": "prettier . --write",
"test": "vitest",
"test:coverage": "vitest --runInBand --coverage"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"dependencies": {},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@types/jsdom": "^16.2.14",
"@types/node": "^17.0.35",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"dts-bundle-generator": "^6.9.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"jsdom": "^19.0.0",
"prettier": "^2.6.2",
"rollup-plugin-license": "^2.8.1",
"typescript": "^4.7.2",
"vite": "^2.9.9",
"vitest": "^0.12.9"
}
}