-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.47 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
{
"version": "1.0.0",
"name": "stylerun",
"description": "Stylerun is natural and performant way to style your (P?)React application",
"author": "artalar",
"license": "MIT",
"type": "module",
"sideEffects": true,
"source": "src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"README.md"
],
"keywords": [
"style",
"stylerun",
"styled-components"
],
"scripts": {
"prepublishOnly": "tsc && npm run build && npm run test && npm run size",
"build": "microbundle -f esm,cjs",
"test": "tsx src/index.test.ts",
"size": "size-limit"
},
"browserslist": [
"last 2 Chrome versions"
],
"minify": {
"mangle": false
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/artalar/stylerun.git"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 2
},
"size-limit": [
{
"path": "dist/index.module.js",
"limit": "500 B"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^9.0.0",
"linkedom-global": "^1.0.0",
"microbundle": "^0.15.1",
"prettier": "^3.0.3",
"size-limit": "^9.0.0",
"tsx": "^3.12.10",
"typescript": "^5.2.2",
"uvu": "^0.5.6"
}
}