@ctx-core/source-map 0.2.28 → 0.2.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +55 -54
package/package.json CHANGED
@@ -1,56 +1,57 @@
1
1
  {
2
- "name": "@ctx-core/source-map",
3
- "version": "0.2.28",
4
- "description": "Extensions to source-map...like sourcemap_writable_stream_",
5
- "type": "module",
6
- "keywords": [
7
- "ctx-core",
8
- "source-map"
9
- ],
10
- "homepage": "https://github.com/ctx-core/source-map#readme",
11
- "bugs": {
12
- "url": "https://github.com/ctx-core/source-map/issues"
13
- },
14
- "repository": {
15
- "type": "git",
16
- "url": "https://github.com/ctx-core/source-map.git"
17
- },
18
- "license": "Apache-2.0",
19
- "author": "Brian Takita",
20
- "files": [
21
- "*.d.ts",
22
- "*.js",
23
- "*.json",
24
- "sourcemap_writable_stream"
25
- ],
26
- "types": "./index.d.ts",
27
- "exports": {
28
- ".": "./index.js",
29
- "./package.json": "./package.json"
30
- },
31
- "dependencies": {
32
- "ctx-core": "^5.35.0",
33
- "source-map": "^0.7.4"
34
- },
35
- "devDependencies": {
36
- "c8": "^9.1.0",
37
- "check-dts": "^0.7.2",
38
- "tsx": "^4.7.0",
39
- "typescript": "next",
40
- "uvu": "^0.5.6"
41
- },
42
- "publishConfig": {
43
- "access": "public",
44
- "cache": "~/.npm"
45
- },
46
- "sideEffects": false,
47
- "scripts": {
48
- "build": ":",
49
- "clean": ":",
50
- "exec": "$@",
51
- "test": "pnpm test:unit && pnpm test:types",
52
- "test:types": "check-dts",
53
- "test:unit": "tsx node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
54
- "test:unit:coverage": "c8 pnpm test:unit"
55
- }
2
+ "name": "@ctx-core/source-map",
3
+ "version": "0.2.30",
4
+ "description": "Extensions to source-map...like sourcemap_writable_stream_",
5
+ "type": "module",
6
+ "keywords": [
7
+ "ctx-core",
8
+ "source-map"
9
+ ],
10
+ "homepage": "https://github.com/ctx-core/source-map#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/ctx-core/source-map/issues"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/ctx-core/source-map.git"
17
+ },
18
+ "license": "Apache-2.0",
19
+ "author": "Brian Takita",
20
+ "files": [
21
+ "*.d.ts",
22
+ "*.js",
23
+ "*.json",
24
+ "sourcemap_writable_stream"
25
+ ],
26
+ "types": "./index.d.ts",
27
+ "exports": {
28
+ ".": "./index.js",
29
+ "./package.json": "./package.json"
30
+ },
31
+ "scripts": {
32
+ "build": ":",
33
+ "clean": ":",
34
+ "exec": "$@",
35
+ "prepublishOnly": "pnpm clean && pnpm build && pnpm test",
36
+ "test": "pnpm test:unit && pnpm test:types",
37
+ "test:types": "check-dts",
38
+ "test:unit": "tsx node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
39
+ "test:unit:coverage": "c8 pnpm test:unit"
40
+ },
41
+ "dependencies": {
42
+ "ctx-core": "^5.35.2",
43
+ "source-map": "^0.7.4"
44
+ },
45
+ "devDependencies": {
46
+ "c8": "^9.1.0",
47
+ "check-dts": "^0.7.2",
48
+ "tsx": "^4.7.0",
49
+ "typescript": "next",
50
+ "uvu": "^0.5.6"
51
+ },
52
+ "publishConfig": {
53
+ "access": "public",
54
+ "cache": "~/.npm"
55
+ },
56
+ "sideEffects": false
56
57
  }