-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
54 lines (54 loc) · 1.31 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
{
"name": "styled-reset",
"description": "Eric Meyer's Reset CSS for styled-components",
"version": "4.5.2",
"author": {
"email": "zac@zacanger.com",
"name": "Zac Anger",
"url": "http://zacanger.com"
},
"license": "MIT",
"main": "lib/index.js",
"module": "lib/esm/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc && tsc -p tsconfig.esm.json",
"format": "sortpack",
"prebuild": "run-s -s format test clean",
"clean": "rm -rf lib && mkdir -p lib",
"preversion": "npm run build",
"test": "npm run test:lint",
"test:lint": "ts-standard src"
},
"homepage": "https://github.com/zacanger/styled-reset#readme",
"repository": {
"type": "git",
"url": "https://github.com/zacanger/styled-reset.git"
},
"bugs": "https://github.com/zacanger/styled-reset/issues",
"keywords": [
"css",
"reset",
"reset.css",
"styled-components"
],
"devDependencies": {
"@types/react": "18.2.14",
"npm-run-all": "4.1.5",
"react": "18.2.0",
"sortpack": "2.3.4",
"styled-components": "6.0.1",
"tap-spec": "5.0.0",
"ts-standard": "12.0.2",
"typescript": "5.1.6"
},
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"styled-components": ">=4.0.0 || >=5.0.0 || >=6.0.0"
}
}