generated from lokalise/npm-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.59 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
{
"name": "@lokalise/styled",
"version": "3.0.0",
"engines": {
"npm": ">=10",
"node": ">=20"
},
"scripts": {
"build": "vite build",
"lint:eslint": "eslint --cache .",
"lint:ts": "tsc --noEmit",
"lint:prettier": "prettier --check .",
"lint": "npm run lint:eslint && npm run lint:ts && npm run lint:prettier",
"lint:fix": "npm run lint:eslint -- --fix && prettier --write .",
"test": "vitest run --typecheck"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./*": {
"import": "./dist/*.js",
"require": "./dist/*.cjs"
}
},
"publishConfig": {
"access": "public"
},
"types": "./dist/index.d.ts",
"dependencies": {
"@types/lodash-es": "^4.17.12",
"csstype": "^3.1.3",
"jest-styled-components": "^7.2.0",
"lodash-es": "^4.17.21",
"styled-components": "^6.1.6"
},
"devDependencies": {
"@lokalise/eslint-config-frontend": "^4.3.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.1.3",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/lodash": "^4.14.202",
"@types/react": "^18.2.48",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^8.56.0",
"lodash": "^4.17.21",
"prettier": "^3.2.2",
"semantic-release": "^24.0.0",
"typescript": "~5.3.3",
"vite": "^5.3.0",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0"
}
}