-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 963 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 963 Bytes
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
{
"name": "@practiso/sdk",
"version": "1.2.0",
"description": "",
"publishConfig": {
"access": "public"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"./lib/**/*"
],
"scripts": {
"prepack": "tsc -p ./tsconfig.json",
"build": "tsc -p ./tsconfig.json",
"clean": "del-cli ./lib",
"test": "vitest"
},
"keywords": [
"Practiso",
"parser",
"data manipulation"
],
"repository": "https://github.com/PractisoDevelopers/practiso-sdk",
"author": "Practiso Developers",
"license": "Apache-2.0",
"packageManager": "pnpm@10.12.1",
"devDependencies": {
"@types/node": "^24.0.3",
"del-cli": "^6.0.0",
"eslint-config-prettier": "^10.1.5",
"node-readable-stream": "^0.1.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"dependencies": {
"dom-serializer": "^2.0.0",
"domhandler": "^5.0.3",
"htmlparser2": "^10.0.0"
}
}