-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.65 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
{
"name": "@igor.dvlpr/magic-string",
"version": "1.2.0",
"description": "🧵 An expressive and chainable library for advanced string manipulations. Supports appending, prepending, trimming, quoting, and path formatting with customizable whitespace handling. Makes advanced String manipulations a piece of cake. 🦥",
"sideEffects": false,
"engines": {
"node": ">=20.0"
},
"types": "./dist/index.d.mts",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"files": ["dist/*.mjs", "dist/*.d.mts"],
"scripts": {
"build": "tsc",
"test": "vitest --run",
"dev": "tsc --sourceMap --watch",
"pub": "npm test && npm run build && npm publish --access public"
},
"keywords": [
"string",
"builder",
"advanced",
"append",
"chars",
"characters",
"concat",
"igorskyflyer",
"igor.dvlpr"
],
"license": "MIT",
"author": "Igor Dimitrijević <igor.dvlpr@gmail.com> (https://github.com/igorskyflyer)",
"funding": "https://ko-fi.com/igorskyflyer",
"homepage": "https://github.com/igorskyflyer/npm-magic-string",
"repository": {
"type": "git",
"url": "git+https://github.com/igorskyflyer/npm-magic-string.git"
},
"bugs": {
"url": "https://github.com/igorskyflyer/npm-magic-string/issues"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@igor.dvlpr/biome-config-igorskyflyer": "^1.0.3",
"@types/node": "^20.14.14",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"dependencies": {
"@igor.dvlpr/scramble": "^1.0.0"
}
}