-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@nlighten/json-transform-core",
"description": "Core types and utilities for handling JSON transformers",
"version": "1.3.2",
"main": "dist/json-transform-core.js",
"umd:main": "dist/json-transform-core.umd.js",
"module": "dist/json-transform-core.module.js",
"typings": "dist/index.d.ts",
"source": "src/index.ts",
"exports": {
".": {
"require": "./dist/json-transform-core.js",
"import": "./dist/json-transform-core.module.js",
"types": "./dist/index.d.ts"
}
},
"sideEffects": false,
"scripts": {
"build": "microbundle",
"test": "vitest --no-watch",
"test:watch": "vitest"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nlighten-oss/json-transform.git"
},
"files": [
"dist/"
],
"keywords": [
"json-transform"
],
"author": "Eli Sherer",
"license": "MIT",
"bugs": {
"url": "https://github.com/nlighten-oss/json-transform/issues"
},
"homepage": "https://github.com/nlighten-oss/json-transform#readme",
"peerDependencies": {
"@nlighten/json-schema-utils": "^1.0.2"
},
"devDependencies": {
"@nlighten/json-schema-utils": "^1.0.2",
"microbundle": "^0.15.1",
"prettier": "3.1.1",
"typescript": "^5.3.3",
"vitest": "1.2.2"
}
}