-
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.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 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": "@talxis/client-metadata",
"version": "0.0.1",
"description": "TALXIS client metadata provider",
"homepage": "https://github.com/TALXIS/client-metadata#readme",
"bugs": {
"url": "https://github.com/TALXIS/client-metadata/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TALXIS/client-metadata.git"
},
"license": "MIT",
"author": "TALXIS",
"type": "commonjs",
"main": "dist/index.js",
"module": "dist/index.esm.mjs",
"umd:main": "dist/index.umd.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"build:watch": "rollup -c -w --bundleConfigAsCjs",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/xrm": "^9.0.88",
"rimraf": "^6.1.3",
"rollup": "^4.10.0",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
}
}