-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 998 Bytes
/
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
{
"name": "r22n",
"version": "1.0.5",
"license": "MIT",
"description": "A zero-configuration language translation interface for react written in typescript.",
"author": "Chris <[email protected]>",
"homepage": "https://github.com/OSSPhilippines/r22n",
"bugs": "https://github.com/OSSPhilippines/r22n/issues",
"repository": "OSSPhilippines/r22n",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "npm run build:tsc && npm run build:files",
"build:tsc": "tsc",
"build:files": "cp ./README.md ./dist/ && cp ./package.json ./dist/ && cp ./LICENSE ./dist/",
"test": "jest"
},
"engines": {
"node": ">=16.20.0"
},
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@jest/globals": "29.5.0",
"@types/node": "16.11.7",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"jest": "29.5.0",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typescript": "5.0.4"
}
}