-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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
{
"name": "remix-head",
"version": "0.0.1",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"description": "Provides the ability to set the content of the Remix head from within the component.",
"license": "MIT",
"scripts": {
"build": "tsc && tsc --project ./tsconfig.esm.json && cpy esm dist",
"test": "jest --coverage",
"test:update": "jest -u --coverage",
"lint": "eslint --fix ./src ./test",
"lint:fix": "eslint --fix ./src ./test"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@swc-node/jest": "^1.8.12",
"@swc/core": "^1.7.3",
"@swc/helpers": "^0.5.12",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.12",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"cpy-cli": "^5.0.0",
"eslint": "9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.5.4",
"typescript-eslint": "^7.17.0"
},
"keywords": [
"remix",
"react",
"head",
"dynamic"
],
"repository": "https://github.com/ReactLibraries/remix-head",
"author": "SoraKumo <[email protected]>"
}