-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
31 lines (31 loc) · 1.03 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
{
"name": "@infisical/sdk",
"version": "0.0.0",
"private": true,
"description": "",
"author": "Infisical <team@infisical.com> (https://infisical.com)",
"main": "index.js",
"workspaces": [
"crates/*",
"languages/*"
],
"scripts": {
"lint": "prettier --check .",
"prettier": "prettier --write .",
"schemas": "rimraf ./support/schemas && cargo run --bin sdk-schemas --all-features && ts-node ./support/scripts/schemas.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build-dev-c-crates": "cargo build --manifest-path crates/infisical-c/Cargo.toml --release && cp ./target/release/libinfisical_c.* languages/java/build/resources"
},
"devDependencies": {
"handlebars": "^4.7.8",
"prettier": "3.1.0",
"quicktype-core": "23.0.79",
"rimraf": "5.0.5",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"dependencies": {
"@types/fs-extra": "^11.0.4",
"fs-extra": "^11.2.0"
}
}