-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.72 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.72 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
49
50
51
52
53
54
55
{
"name": "@crystallize/schema",
"version": "6.10.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CrystallizeAPI/schema"
},
"exports": {
"./catalogue": {
"types": "./dist/catalogue/index.d.ts",
"import": "./dist/catalogue/index.mjs",
"require": "./dist/catalogue/index.js"
},
"./pim": {
"types": "./dist/pim/index.d.ts",
"import": "./dist/pim/index.mjs",
"require": "./dist/pim/index.js"
},
"./shop": {
"types": "./dist/shop/index.d.ts",
"import": "./dist/shop/index.mjs",
"require": "./dist/shop/index.js"
},
"./mass-operation": {
"types": "./dist/mass-operation/index.d.ts",
"import": "./dist/mass-operation/index.mjs",
"require": "./dist/mass-operation/index.js"
}
},
"scripts": {
"build": "rm -rf dist && tsup src/pim/index.ts --format esm,cjs --dts -d dist/pim && tsup src/mass-operation/index.ts --format esm,cjs --dts -d dist/mass-operation && tsup src/catalogue/index.ts --format esm,cjs --dts -d dist/catalogue && tsup src/shop/index.ts --format esm,cjs --dts -d dist/shop",
"watch": "tsc -W",
"test": "vitest run"
},
"dependencies": {
"tslib": "^2.8.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.6",
"@types/node": "^24.2.0",
"json": "^11.0.0",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"files": [
"package.json",
"dist",
"src",
"README.md",
"LICENSE"
]
}