-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.49 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
{
"name": "inlines",
"description": "When you just want to use the style prop in React",
"version": "0.4.0-alpha.25",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"source": "src/index.ts",
"exports": {
".": "./dist/src/index.js",
"./ssr": "./dist/src/ssr.js"
},
"type": "module",
"scripts": {
"build": "npx tsc",
"watch": "npx tsc -w",
"test": "npx ava"
},
"files": [
"src",
"dist/src/**/*.js",
"dist/src/**/*.d.ts",
"README.md",
"LICENSE"
],
"ava": {
"timeout": "4m",
"workerThreads": false,
"files": [
"./dist/test/extract.js",
"./dist/test/ssr.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/atelier-saulx/inlines.git"
},
"keywords": [
"react",
"inline",
"style",
"styled",
"css"
],
"sideEffects": false,
"author": "youzi",
"license": "ISC",
"bugs": {
"url": "https://github.com/atelier-saulx/inlines/issues"
},
"prettier": "@saulx/prettier-config",
"homepage": "https://github.com/atelier-saulx/inlines#readme",
"peerDependencies": {
"react": "*",
"typescript": "*"
},
"dependencies": {
"@saulx/hash": "^3.0.0"
},
"devDependencies": {
"@saulx/prettier-config": "^2.0.0",
"@saulx/tsconfig": "^1.1.0",
"@types/node": "18",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"ava": "^6.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.5"
}
}