-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.16 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.16 KB
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
{
"name": "@hydroperx/pi",
"version": "1.0.1",
"description": "Product internationalization with Project Fluent translation lists.",
"files": ["/dist"],
"scripts": {
"build": "tsc",
"doc": "npx typedoc --plugin typedoc-plugin-markdown",
"prepublishOnly": "npm run build"
},
"exports": {
".": {
"typedoc": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./react": {
"typedoc": "./src/react/index.tsx",
"types": "./dist/react/index.d.ts",
"default": "./dist/react/index.js"
}
},
"browser": {
"fs": false,
"path": false
},
"keywords": ["fluent", "fluent-project", "ftl"],
"author": "hydroper <hydroperfox@gmail.com>",
"license": "Apache-2.0",
"dependencies": {
"@fluent/bundle": "^0.18.0",
"axios": "^1.3.6"
},
"peerDependencies": {
"react": ">=19.0.0"
},
"devDependencies": {
"@types/node": "^22.13.0",
"@types/react": "^19.0.0",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.1",
"typescript": "~5.6.2"
},
"repository": "https://github.com/hydroperx/pi.js",
"publishConfig": {
"access": "public"
}
}