-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.05 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
{
"name": "styled-extract",
"version": "1.1.0",
"description": "A tiny utility to make 'styled-like' components with Vanilla-Extract",
"author": "Mali Coxon <[email protected]>",
"license": "MIT",
"repository": "Slooowpoke/styled-extract",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"source": "src/styled.ts",
"main": "dist/styled.js",
"module": "dist/styled.module.js",
"unpkg": "dist/styled.umd.js",
"types": "dist/styled.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/styled.module.js",
"require": "./dist/styled.js"
}
},
"keywords": [
"styled",
"vanilla",
"extract",
"variants",
"emotion",
"styled-components",
"css-in-js"
],
"scripts": {
"check": "npm run -s typecheck && npm run -s lint && npm run -s check:format",
"typecheck": "tsc --noEmit",
"test": "jest --collect-coverage",
"lint": "eslint 'src/**'",
"format": "prettier --write '**'",
"check:format": "prettier --check '**'",
"build": "rm -rf dist && microbundle --inline none",
"precommit": "lint-staged",
"prepublishOnly": "npm run -s build",
"release": "standard-version"
},
"devDependencies": {
"standard-version": "^9.3.2",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"@vanilla-extract/babel-plugin": "^1.1.5",
"@vanilla-extract/recipes": "^0.2.4",
"eslint": "^8.12.0",
"eslint-plugin-react": "^7.29.4",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"microbundle": "^0.14.2",
"parcel": "^2.4.0",
"prettier": "^2.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"lint-staged": {
"*": [
"prettier --write",
"git add"
]
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}