-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.12 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
84
85
86
87
88
{
"name": "@dschz/load-script",
"version": "1.0.9",
"description": "Dynamically load scripts in the browser with caching.",
"keywords": [
"async",
"async-script",
"browser",
"dynamic-script",
"external-script",
"html-script",
"inject",
"inject-script",
"javascript",
"load",
"load-script",
"loader",
"promise",
"script",
"script-injector",
"script-loader",
"typescript",
"utility"
],
"homepage": "https://github.com/dsnchz/load-script#readme",
"bugs": {
"url": "https://github.com/dsnchz/load-script/issues"
},
"license": "MIT",
"author": "Daniel Sanchez <dsanc89@icloud.com>",
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"browser": {},
"types": "./dist/index.d.ts",
"typesVersions": {},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"dev": "vite",
"format": "oxfmt --check",
"format:fix": "oxfmt",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pkg:changeset": "changeset",
"pkg:version": "changeset version",
"pkg:publish": "bun run build && changeset publish",
"serve": "vite preview",
"start": "vite",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@changesets/cli": "^2.29.3",
"@tailwindcss/vite": "^4.1.5",
"@types/bun": "^1.2.12",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"@vitest/coverage-istanbul": "^3.1.3",
"eslint": "^9.26.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-solid": "^0.14.5",
"globals": "^16.1.0",
"jiti": "^2.4.2",
"jsdom": "^26.1.0",
"oxfmt": "0.60.0",
"tailwindcss": "^4.1.5",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0",
"vite": "6.4.3",
"vite-plugin-solid": "^2.11.6",
"vitest": "3.2.7"
}
}