-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.61 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
53
54
55
56
57
58
59
60
61
62
{
"name": "storage-manager-js",
"version": "4.2.5",
"description": "A little way to control Cookies, LocalStorage and SessionStorage without tears",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.cjs",
"exports": {
".": {
"default": {
"type": "./dist/index.d.ts",
"import": "./dist/index.cjs",
"default": "./dist/index.js",
"require": "./dist/index.cjs"
},
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.ts",
"default": "./dist/index.d.ts"
}
}
},
"scripts": {
"build": "vite build; tsc",
"dev": "vite build --watch",
"pack": "npm pack --dry-run --pack-destination out out/storage-manager-js",
"prepack": "pnpm build",
"prepare": "vite build",
"start": "vite build --watch",
"test": "vitest run && npm run test:types",
"test:types": "tsc -p ./tsconfig.test.json",
"test:watch": "vitest watch"
},
"keywords": [
"cookie",
"cookies",
"browser",
"localstorage",
"sessionstorage",
"client",
"js-cookie",
"storage",
"manager",
"localStorage",
"sessionStorage"
],
"homepage": "https://github.com/g4rcez/storage-manager-js",
"repository": {
"type": "git",
"url": "https://github.com/g4rcez/storage-manager-js"
},
"author": "Allan Garcez <allan.f.garcez@gmail.com> (https://github.com/g4rcez)",
"license": "MIT",
"devDependencies": {
"jsdom": "21.1.1",
"prettier": "2.8.8",
"typescript": "4.2.4",
"vite": "4.3.9",
"vitest": "0.30.1"
}
}