@riturathinsharma/prism-guard 1.0.0

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 (3) hide show
  1. package/README.md +1 -0
  2. package/dist/index.js +47841 -0
  3. package/package.json +42 -0
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@riturathinsharma/prism-guard",
3
+ "version": "1.0.0",
4
+ "description": "Frontend architecture intelligence platform for React and TypeScript",
5
+ "license": "MIT",
6
+ "author": "Ritumoni Sarma",
7
+ "homepage": "https://github.com/Riturathin/prism-guard",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/Riturathin/prism-guard.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/Riturathin/prism-guard/issues"
14
+ },
15
+ "keywords": [
16
+ "react",
17
+ "typescript",
18
+ "architecture",
19
+ "performance",
20
+ "frontend",
21
+ "eslint",
22
+ "static-analysis",
23
+ "microfrontend",
24
+ "code-quality",
25
+ "prism-guard"
26
+ ],
27
+ "main": "./dist/index.js",
28
+ "types": "./dist/index.d.ts",
29
+ "files": [
30
+ "dist"
31
+ ],
32
+ "bin": {
33
+ "prism-guard": "dist/index.js"
34
+ },
35
+ "scripts": {
36
+ "build": "node build.js",
37
+ "dev": "ts-node --project tsconfig.json src/index.ts"
38
+ },
39
+ "publishConfig": {
40
+ "access": "public"
41
+ }
42
+ }