-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.63 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
{
"name": "zss",
"version": "0.0.0",
"description": "A 0KB css-in-js solution",
"main": "dist/zss.js",
"module": "dist/zss.esm.js",
"umd:main": "dist/zss.umd.js",
"source": "src/index.ts",
"unpkg": "dist/zss.umd.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/zss.js",
"browser": "./dist/zss.modern.js",
"import": "./dist/zss.esm.js",
"umd": "./dist/zss.umd.js"
}
},
"scripts": {
"test:ts": "tsc --noEmit",
"test:unit": "jest --ci --coverage",
"test": "pnpm run test:ts && pnpm run test:unit",
"clean": "rimraf dist",
"size-check": "filesize",
"build": "microbundle --name zss",
"dev": "microbundle --watch --name zss",
"format": "prettier \"**/*.{js,ts,tsx,md}\" --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moonharelabs/zss.git"
},
"keywords": [
"css-in-js",
"zss",
"styled",
"emotion",
"styled-components",
"javascript",
"react",
"preact"
],
"author": "Kavindu Santhusa",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/moonharelabs/zss/issues"
},
"homepage": "https://github.com/moonharelabs/zss#readme",
"devDependencies": {
"@ampproject/filesize": "^4.3.0",
"@types/jest": "^27.0.1",
"csstype": "^3.0.9",
"jest": "^27.2.0",
"microbundle": "^0.13.3",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"peerDependencies": {
"csstype": "^3.0.9"
},
"typings": "./dist/zss.d.ts",
"filesize": {
"./dist/zss.esm.js": {
"gzip": "1200B"
}
}
}