-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.65 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
{
"name": "@oursky/react-messageformat",
"version": "2.0.2",
"license": "Apache-2.0",
"main": "dist/index.cjs.js",
"module": "dist/index.module.js",
"scripts": {
"prepare": "npm run typecheck && npm run format && npm run test && npm run build",
"format": "prettier --write --list-different '*.config.js' 'src/**/*.{js,jsx,ts,tsx}'",
"prebuild": "rm -rf ./dist",
"build": "rollup -c",
"typecheck": "tsc --noEmit",
"test": "jest"
},
"files": [
"dist",
"index.d.ts"
],
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/plugin-transform-react-jsx": "^7.25.9",
"@babel/plugin-transform-typescript": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-is": "^18.3.0",
"@types/react-test-renderer": "^18.3.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"prettier": "^3.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"react-test-renderer": "^18.3.1",
"rollup": "^4.28.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@louischan-oursky/messageformat-parser": "0.4.3",
"entities": "^5.0.0",
"make-plural": "^7.4.0"
},
"peerDependencies": {
"react": "^16.3.0 || ^17 || ^18",
"react-dom": "^16.3.0 || ^17 || ^18"
}
}