-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.56 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@lopatnov/javascripttostring",
"version": "2.1.0",
"type": "module",
"license": "Apache-2.0",
"author": "lopatnov",
"description": "A TypeScript library that converts any JavaScript runtime value into its string source code representation, including objects, arrays, functions, circular references, and cross-references",
"homepage": "https://lopatnov.github.io/jsToString/",
"keywords": [
"javascript-to-string",
"object-to-string",
"stringify",
"serialization",
"source-code",
"code-generation",
"circular-references",
"cross-references",
"function-to-string",
"array-to-string",
"value-to-string",
"runtime-converter",
"TypeScript",
"JavaScript"
],
"main": "dist/lib/javascripttostring.cjs",
"module": "dist/javascripttostring.esm.mjs",
"browser": "dist/javascripttostring.umd.js",
"typings": "dist/types/javascripttostring.d.ts",
"exports": {
".": {
"types": "./dist/types/javascripttostring.d.ts",
"import": "./dist/javascripttostring.esm.mjs",
"require": "./dist/lib/javascripttostring.cjs",
"default": "./dist/lib/javascripttostring.cjs"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lopatnov/jsToString.git"
},
"bugs": {
"url": "https://github.com/lopatnov/jsToString/issues"
},
"scripts": {
"build": "tsc --emitDeclarationOnly && rollup -c rollup.config.js && typedoc --out docs --entryPointStrategy expand src",
"test": "vitest run --coverage",
"lint": "biome lint src test",
"lint:fix": "biome lint --write src test",
"format": "biome format --write src test",
"format:check": "biome format src test",
"check": "biome check src test",
"docs": "typedoc --out docs --entryPointStrategy expand src"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@lopatnov/rollup-plugin-uglify": "^4.1.3",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^25.3.0",
"@vitest/coverage-v8": "^3.0.0",
"lodash.camelcase": "^4.3.0",
"rollup": "^4.59.0",
"terser": "^5.46.0",
"tslib": "^2.8.1",
"typedoc": "^0.28.17",
"typescript": "^5.9.3",
"vitest": "^3.0.0"
},
"dependencies": {
"@lopatnov/get-internal-type": "^2.2.1"
}
}