-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
72 lines (72 loc) · 1.84 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
{
"name": "next-with-linaria",
"version": "0.7.0",
"description": "Linaria support for Next.js 13 app directory feature",
"main": "lib/webpackConfig.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"clean": "rm -rf lib",
"lint": "eslint --fix src/**",
"test": "pnpm test --filter ./tests/example",
"prepublish": "pnpm run clean && pnpm run build"
},
"packageManager": "[email protected]",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"@wyw-in-js/babel-preset": "0.3.0",
"@wyw-in-js/transform": "0.3.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-typescript-sort-keys": "3.1.0",
"eslint-plugin-unused-imports": "3.0.0",
"is-ci": "3.0.1",
"lint-staged": "15.2.1",
"next": "14.1.0",
"prettier": "3.2.4",
"simple-git-hooks": "2.9.0",
"typescript": "5.3.3",
"webpack": "5.90.0"
},
"peerDependencies": {
"@babel/runtime": "7.x",
"@wyw-in-js/babel-preset": "0.x",
"@wyw-in-js/transform": "0.x"
},
"dependencies": {
"file-system-cache": "2.4.4"
},
"files": [
"lib"
],
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"**/*.(js|jsx|ts|tsx)": [
"eslint --fix"
],
"**/*.(js|jsx|ts|tsx|json|css|md|mdx)": [
"prettier --write"
]
},
"author": "Dario Lehmhus",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dlehmhus/next-with-linaria.git"
},
"bugs": {
"url": "https://github.com/dlehmhus/next-with-linaria/issues"
},
"homepage": "https://github.com/dlehmhus/next-with-linaria#readme",
"keywords": [
"linaria",
"next",
"next.js",
"css"
]
}